-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
20 lines (20 loc) · 969 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "capacitor-tauri-platform",
"private": true,
"scripts": {
"prepublishOnly": "npm run build-all && shx cp -f ./README.md ./platform/README.md && git add --all && git commit -m \"chore: build and update readme in package\" && git push",
"publish:latest": "env-cmd lerna publish --conventional-commits -create-release github --force-publish",
"publish:next-prerelease": "env-cmd lerna publish prerelease --preid alpha --dist-tag alpha --pre-dist-tag alpha --conventional-commits --create-release github --force-publish",
"publish:next": "env-cmd lerna publish --preid next --dist-tag next --pre-dist-tag next --conventional-commits --create-release github --force-publish",
"build-all": "lerna run build --stream",
"fmt": "lerna run fmt --stream",
"postinstall": "lerna bootstrap",
"env-cmd": "env-cmd",
"shx": "shx"
},
"devDependencies": {
"env-cmd": "^10.1.0",
"lerna": "^4.0.0",
"shx": "^0.3.3"
}
}