Skip to content

Commit

Permalink
chore: only build shell as part of build step
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelmaddock committed Nov 27, 2024
1 parent 10f6d60 commit 7a464d5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,8 @@
"start": "yarn build:context-menu && yarn build:extensions && yarn --cwd ./packages/shell start",
"start:debug": "cross-env SHELL_DEBUG=true DEBUG='electron-chrome-extensions*' yarn start",
"start:skip-build": "cross-env SHELL_DEBUG=true DEBUG='electron-chrome-extensions*' yarn --cwd ./packages/shell start",
"test": "yarn test:extensions && yarn test:shell",
"test:extensions": "yarn --cwd ./packages/electron-chrome-extensions test",
"test:shell": "yarn --cwd ./packages/shell test"
"test": "yarn test:extensions",
"test:extensions": "yarn --cwd ./packages/electron-chrome-extensions test"
},
"license": "GPL-3.0",
"author": "Samuel Maddock <sam@samuelmaddock.com>",
Expand Down
3 changes: 1 addition & 2 deletions packages/shell/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@
"description": "Minimum Viable Browser shell built on Electron.",
"main": ".webpack/main",
"scripts": {
"build": "npm run make",
"build": "npm run package",
"start": "electron-forge start",
"test": "npm run build",
"package": "electron-forge package",
"make": "electron-forge make"
},
Expand Down

0 comments on commit 7a464d5

Please sign in to comment.