File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
const typescriptBlueprintPolyfill = require ( 'ember-cli-typescript-blueprint-polyfill' ) ;
2
- const EMBER_TYPESCRIPT_BLUEPRINTS = false ;
2
+ const EMBER_TYPESCRIPT_BLUEPRINTS = true ;
3
3
4
4
function canEmitTypeScript ( ) {
5
5
return 'EMBER_TYPESCRIPT_BLUEPRINTS' in process . env
6
- ? process . env . EMBER_TYPESCRIPT_BLUEPRINTS
6
+ ? process . env . EMBER_TYPESCRIPT_BLUEPRINTS === 'true'
7
7
: EMBER_TYPESCRIPT_BLUEPRINTS ;
8
8
}
9
9
Original file line number Diff line number Diff line change 45
45
"lint:eslint:fix" : " npm-run-all \" lint:eslint --fix\" " ,
46
46
"lint:fix" : " npm-run-all lint:*:fix" ,
47
47
"test" : " node bin/run-tests.js" ,
48
- "test:blueprints:js" : " mocha node-tests/blueprints/**/*- test.js " ,
49
- "test:blueprints:ts" : " EMBER_TYPESCRIPT_BLUEPRINTS=true yarn test: blueprints: js" ,
48
+ "test:blueprints:js" : " EMBER_TYPESCRIPT_BLUEPRINTS=false yarn test:blueprints:ts " ,
49
+ "test:blueprints:ts" : " mocha node-tests/ blueprints/**/*-test. js" ,
50
50
"test:blueprints" : " yarn test:blueprints:js && yarn test:blueprints:ts" ,
51
51
"test:node" : " qunit tests/node/**/*-test.js" ,
52
52
"test:browserstack" : " node bin/run-browserstack-tests.js" ,
You can’t perform that action at this time.
0 commit comments