forked from capacitor-community/electron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
19 lines (19 loc) · 1.03 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "capacitor-electron-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-major": "env-cmd lerna publish major --conventional-commits --create-release github --force-publish --dist-tag latest",
"publish:latest-minor": "env-cmd lerna publish minor --conventional-commits --create-release github --force-publish --dist-tag latest",
"publish:latest-patch": "env-cmd lerna publish patch --conventional-commits --create-release github --force-publish --dist-tag latest",
"publish:next": "env-cmd lerna publish prerelease --preid next --dist-tag next --pre-dist-tag next --conventional-commits --create-release github --force-publish",
"build-all": "lerna run build --stream",
"postinstall": "lerna bootstrap",
"lerna": "lerna"
},
"devDependencies": {
"env-cmd": "~10.1.0",
"lerna": "~4.0.0",
"shx": "~0.3.3"
}
}