Skip to content

Commit 7a464d5

Browse files
committed
chore: only build shell as part of build step
1 parent 10f6d60 commit 7a464d5

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,8 @@
1818
"start": "yarn build:context-menu && yarn build:extensions && yarn --cwd ./packages/shell start",
1919
"start:debug": "cross-env SHELL_DEBUG=true DEBUG='electron-chrome-extensions*' yarn start",
2020
"start:skip-build": "cross-env SHELL_DEBUG=true DEBUG='electron-chrome-extensions*' yarn --cwd ./packages/shell start",
21-
"test": "yarn test:extensions && yarn test:shell",
22-
"test:extensions": "yarn --cwd ./packages/electron-chrome-extensions test",
23-
"test:shell": "yarn --cwd ./packages/shell test"
21+
"test": "yarn test:extensions",
22+
"test:extensions": "yarn --cwd ./packages/electron-chrome-extensions test"
2423
},
2524
"license": "GPL-3.0",
2625
"author": "Samuel Maddock <[email protected]>",

packages/shell/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@
55
"description": "Minimum Viable Browser shell built on Electron.",
66
"main": ".webpack/main",
77
"scripts": {
8-
"build": "npm run make",
8+
"build": "npm run package",
99
"start": "electron-forge start",
10-
"test": "npm run build",
1110
"package": "electron-forge package",
1211
"make": "electron-forge make"
1312
},

0 commit comments

Comments
 (0)