@capgo/camera-preview 8.2.1 → 8.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@capgo/camera-preview",
3
- "version": "8.2.1",
3
+ "version": "8.3.0",
4
4
  "description": "Camera preview",
5
5
  "license": "MPL-2.0",
6
6
  "repository": {
7
7
  "type": "git",
8
- "url": "https://github.com/Cap-go/capacitor-camera-preview"
8
+ "url": "git+https://github.com/Cap-go/capacitor-camera-preview.git"
9
9
  },
10
10
  "bugs": {
11
11
  "url": "https://github.com/Cap-go/capacitor-camera-preview/issues"
@@ -37,20 +37,21 @@
37
37
  "ios/"
38
38
  ],
39
39
  "scripts": {
40
- "verify": "npm run verify:ios && npm run verify:android && npm run verify:web",
40
+ "verify": "bun run verify:ios && bun run verify:android && bun run verify:web",
41
41
  "verify:ios": "xcodebuild -scheme CapgoCameraPreview -destination generic/platform=iOS",
42
42
  "verify:android": "cd android && ./gradlew clean build test && cd ..",
43
- "verify:web": "npm run build",
44
- "lint": "npm run eslint && npm run prettier -- --check && npm run swiftlint -- lint",
45
- "fmt": "npm run eslint -- --fix && npm run prettier -- --write && npm run swiftlint -- --fix --format",
43
+ "verify:web": "bun run build",
44
+ "lint": "bun run eslint && bun run prettier -- --check && bun run swiftlint -- lint",
45
+ "fmt": "bun run eslint -- --fix && bun run prettier -- --write && bun run swiftlint -- --fix --format",
46
46
  "eslint": "eslint .",
47
47
  "prettier": "prettier-pretty-check \"**/*.{css,html,ts,js,java}\" --plugin=prettier-plugin-java",
48
48
  "swiftlint": "node-swiftlint",
49
49
  "docgen": "docgen --api CameraPreviewPlugin --output-readme README.md --output-json dist/docs.json",
50
- "build": "npm run clean && npm run docgen && tsc && rollup -c rollup.config.mjs",
50
+ "build": "bun run clean && bun run docgen && tsc && rollup -c rollup.config.mjs",
51
51
  "clean": "rimraf ./dist",
52
+ "maestro:smoke": "bunx maestro test .maestro/camera-preview-smoke.yaml",
52
53
  "watch": "tsc --watch",
53
- "prepublishOnly": "npm run build"
54
+ "prepublishOnly": "bun run build"
54
55
  },
55
56
  "devDependencies": {
56
57
  "@capacitor/android": "^8.0.0",