We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 336e51d commit 27cfb07Copy full SHA for 27cfb07
package.json
@@ -8,9 +8,13 @@
8
"clientinstall": "npm install --prefix client",
9
"server": "tsx index.ts",
10
"start": "concurrently \"npm run server\" \"npm run client\"",
11
- "build": "vite build",
+ "build": "npm run build-ui && npm run build-lib",
12
+ "test": "NODE_ENV=test ts-mocha './test/**/*.test.js' --exit",
13
"build-ts": "tsc",
- "test": "NODE_ENV=test ts-mocha './test/*.js' --exit",
14
+ "build-ui": "vite build",
15
+ "build-lib": "./scripts/build-for-publish.sh",
16
+ "restore-lib": "./scripts/undo-build.sh",
17
+ "check-types": "tsc",
18
"test-coverage": "nyc npm run test",
19
"test-coverage-ci": "nyc --reporter=lcovonly --reporter=text npm run test",
20
"prepare": "node ./scripts/prepare.js",
0 commit comments