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 0bc4fe1 commit 8d7224cCopy full SHA for 8d7224c
2 files changed
.github/workflows/ci.yml
@@ -183,6 +183,7 @@ jobs:
183
env:
184
DISABLE_SOURCE_MAPS: true
185
BROCCOLI_ENV: production
186
+ SHOULD_TRANSPILE_FOR_NODE: true
187
run: yarn ember build -prod
188
- name: test
189
run: yarn test:node
config/targets.js
@@ -6,4 +6,5 @@ const shouldTranspile = Boolean(process.env.SHOULD_TRANSPILE);
6
7
module.exports = {
8
browsers: isProduction || shouldTranspile ? allSupportedBrowsers : modernBrowsers,
9
+ ...(process.env.SHOULD_TRANSPILE_FOR_NODE ? { node: 'current' } : undefined),
10
};
0 commit comments