|
28 | 28 | "native" |
29 | 29 | ], |
30 | 30 | "scripts": { |
31 | | - "verify": "pnpm verify:ios && pnpm verify:android && pnpm verify:web", |
| 31 | + "verify": "npm run verify:ios && npm run verify:android && npm run verify:web", |
32 | 32 | "verify:ios": "cd ios && pod install && xcodebuild -workspace Plugin.xcworkspace -scheme Plugin -destination generic/platform=iOS && cd ..", |
33 | 33 | "verify:android": "cd android && ./gradlew clean build test && cd ..", |
34 | | - "verify:web": "pnpm build", |
35 | | - "lint": "pnpm eslint && pnpm prettier -- --check && pnpm swiftlint -- lint", |
36 | | - "fmt": "pnpm eslint -- --fix && pnpm prettier -- --write && pnpm swiftlint -- --fix --format", |
| 34 | + "verify:web": "npm run build", |
| 35 | + "lint": "npm run eslint && npm run prettier -- --check && npm run swiftlint -- lint", |
| 36 | + "fmt": "npm run eslint -- --fix && npm run prettier -- --write && npm run swiftlint -- --fix --format", |
37 | 37 | "eslint": "eslint . --ext ts", |
38 | 38 | "prettier": "prettier \"**/*.{css,html,ts,js,java}\"", |
39 | 39 | "swiftlint": "node-swiftlint", |
40 | 40 | "docgen": "docgen --api TelephonyPlugin --output-readme README.md --output-json dist/docs.json", |
41 | | - "build": "pnpm clean && pnpm docgen && tsc && rollup -c rollup.config.js", |
| 41 | + "build": "npm run clean && npm run docgen && tsc && rollup -c rollup.config.js", |
42 | 42 | "clean": "rimraf ./dist", |
43 | 43 | "watch": "tsc --watch", |
44 | | - "prepublishOnly": "pnpm build" |
| 44 | + "prepublishOnly": "npm run build" |
45 | 45 | }, |
46 | 46 | "devDependencies": { |
47 | 47 | "@capacitor/android": "^6.0.0", |
|
0 commit comments