Skip to content

Commit 8188179

Browse files
authored
fix local dev (#2656)
1 parent 5ee2249 commit 8188179

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ jobs:
198198
env:
199199
PR: ${{ github.event.pull_request.number }}
200200
- name: Build
201-
run: pnpm ember build --environment production
201+
run: pnpm build:production
202202
- name: Pack
203203
run: |
204204
VERSION="$(jq -r '.version' package.json)"

package.json

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@
1010
"test": "tests"
1111
},
1212
"scripts": {
13-
"build": "ember build",
14-
"build:production": "EMBER_ENV=production node scripts/download-panes.js && ember build --environment production && gulp compress:chrome && gulp compress:firefox && gulp clean-tmp",
13+
"build":"pnpm build:ember-debug && ember build",
14+
"build:ember-debug": "pnpm --filter ember-debug build",
15+
"build:production": "pnpm build:ember-debug && EMBER_ENV=production node scripts/download-panes.js && ember build --environment production && gulp compress:chrome && gulp compress:firefox && gulp clean-tmp",
1516
"changelog": "github_changelog_generator -u emberjs -p ember-inspector --since-tag v3.8.0",
1617
"compress:panes": "gulp compress:chrome-pane && gulp compress:firefox-pane && gulp compress:bookmarklet-pane",
1718
"lint": "concurrently \"pnpm:lint:*(!fix)\" --names \"lint:\" --prefixColors auto",
@@ -28,8 +29,13 @@
2829
"serve:bookmarklet": "ember serve --port 9191",
2930
"start": "ember serve",
3031
"test": "concurrently \"pnpm:lint\" \"pnpm:test:*\" --names \"lint,test:\" --prefixColors auto",
31-
"test:ember": "COVERAGE=true ember test",
32-
"watch": "ember build --watch"
32+
"test:ember": "pnpm build:ember-debug && COVERAGE=true ember test",
33+
"watch-test": "pnpm '/test-watch:/'",
34+
"watch-test:ember-debug": "pnpm --filter ember-debug watch",
35+
"watch-test:inspector-ui": "ember test --serv",
36+
"watch": "pnpm '/watch:/'",
37+
"watch:inspector-ui": "ember build --watch",
38+
"watch:ember-debug": "pnpm --filter ember-debug watch"
3339
},
3440
"dependencies": {
3541
"got": "^11.8.6",

0 commit comments

Comments
 (0)