Skip to content

Commit 0c86c35

Browse files
committed
Change build commands' aliases
1 parent 530519c commit 0c86c35

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616
"start": "vite",
1717
"start:electron": "electron .",
1818
"lint": "eslint",
19-
"build": "vite build",
19+
"build:js": "vite build",
2020
"build:electron": "electron-builder --dir",
21-
"build:all": "pnpm build && pnpm build:electron",
21+
"build": "pnpm build:js && pnpm build:electron",
2222
"package:electron": "electron-builder",
23-
"package:all": "pnpm build && pnpm package:electron",
23+
"package": "pnpm build:js && pnpm package:electron",
2424
"release:electron": "pnpm package:electron --publish always",
25-
"release": "pnpm build && pnpm release:electron",
25+
"release": "pnpm build:js && pnpm release:electron",
2626
"preinstall": "npx only-allow pnpm",
2727
"postinstall": "electron-builder install-app-deps",
2828
"postuninstall": "electron-builder install-app-deps"

0 commit comments

Comments
 (0)