|
8 | 8 | "start-server": "node ./server/out/server.js",
|
9 | 9 | "start-electron-only": "node ./server/out/electron-only.js",
|
10 | 10 |
|
11 |
| - "compile": "npm run compile-server & npm run compile-client", |
12 |
| - "compile-server": "tsc --project ./server/", |
| 11 | + "compile": "tsc --project ./server/ & tsc --project ./client/", |
13 | 12 | "compile-server-watch": "tsc --project ./server/ -w",
|
14 |
| - "compile-client": "tsc --project ./client/", |
15 | 13 | "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", |
23 | 14 |
|
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 | + |
25 | 19 | "set-version": "node update.js",
|
26 | 20 | "dev": "node update.js d x.x.x false",
|
27 | 21 | "prod": "node update.js p x.x.x false"
|
|
0 commit comments