Skip to content

Commit f9b3abe

Browse files
authored
ci test script cleaning
1 parent ff9cb4f commit f9b3abe

File tree

1 file changed

+5
-11
lines changed

1 file changed

+5
-11
lines changed

package.json

+5-11
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,14 @@
88
"start-server": "node ./server/out/server.js",
99
"start-electron-only": "node ./server/out/electron-only.js",
1010

11-
"compile": "npm run compile-server & npm run compile-client",
12-
"compile-server": "tsc --project ./server/",
11+
"compile": "tsc --project ./server/ & tsc --project ./client/",
1312
"compile-server-watch": "tsc --project ./server/ -w",
14-
"compile-client": "tsc --project ./client/",
1513
"compile-client-watch": "tsc --project ./client/ -w",
16-
17-
"dist-ubuntu-latest": "electron-builder --publish=never",
18-
"dist-windows-latest": "electron-builder --win --publish=never",
19-
20-
"pack-styles": "java -jar lit-v1.0b2.jar",
21-
"pack-client": "rollup client/temp/src/app.js --file client/out/app.js --format iife",
22-
"pack": "npm run pack-client & npm run pack-styles",
2314

24-
"update": "npm run compile && npm run pack",
15+
"pack": "rollup client/temp/src/app.js --file client/out/app.js --format iife & java -jar lit-v1.0b2.jar",
16+
"dist-ubuntu-latest": "run compile && npm run pack && electron-builder --publish=never",
17+
"dist-windows-latest": "run compile && npm run pack && electron-builder --win --publish=never",
18+
2519
"set-version": "node update.js",
2620
"dev": "node update.js d x.x.x false",
2721
"prod": "node update.js p x.x.x false"

0 commit comments

Comments
 (0)