Skip to content

Commit e015b1a

Browse files
committed
Update package.json
1 parent 21c87b4 commit e015b1a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
"postbuild": "node internals/scripts/BuildViewers.mjs",
1111
"preview": "electron-vite preview",
1212
"package": "npm run build && electron-builder build --publish never",
13-
"package-all": "npm run build && electron-builder build -mwl",
14-
"package-ci": "npm run build && electron-builder --publish always",
13+
"package-all": "npm run build && electron-builder build --mac --win --linux",
14+
"package-ci": "npm run build && electron-builder build --publish always",
1515
"package-mac": "npm run build && electron-builder build --mac",
1616
"package-linux": "npm run build && electron-builder build --linux",
1717
"package-win": "npm run build && electron-builder build --win --x64",
@@ -20,11 +20,11 @@
2020
"lint-fix": "npm run lint -- --fix",
2121
"lint-styles": "stylelint '**/*.*(css|scss)'",
2222
"lint-styles-fix": "npm run lint-styles -- --fix; exit 0",
23-
"postlint-fix": "prettier --single-quote --write '**/*.{js,jsx,json,html,css,less,scss,yml}'",
23+
"postlint-fix": "prettier --single-quote --write '**/*.{ts,tsx,js,jsx,json,html,css,less,scss,yml}'",
2424
"postlint-styles-fix": "prettier --single-quote --write '**/*.{css,scss}'",
2525
"test": "cross-env jest --passWithNoTests",
26-
"test-all": "npm run lint && npm run tsc && npm run build && npm test",
27-
"tsc": "tsc --noEmit"
26+
"test-all": "npm run lint && npm run lint-styles && npm run typecheck && npm run build && npm test",
27+
"typecheck": "tsc --noEmit"
2828
},
2929
"lint-staged": {
3030
"*.{js,jsx,ts,tsx}": [

0 commit comments

Comments
 (0)