File tree Expand file tree Collapse file tree 3 files changed +218
-89
lines changed Expand file tree Collapse file tree 3 files changed +218
-89
lines changed Original file line number Diff line number Diff line change 106106 "ember-addon" : {
107107 "configPath" : " tests/dummy/config" ,
108108 "before" : [
109- " ember-cli-babel"
109+ " ember-cli-babel" ,
110+ " ember-qunit-decorators"
111+ ],
112+ "after" : [
113+ " ember-source" ,
114+ " ember-data" ,
115+ " ember-decorators"
110116 ]
111117 },
112118 "prettier" : {
Original file line number Diff line number Diff line change @@ -28,7 +28,10 @@ module.exports = {
2828 // This won't be necessary in 2.x if we shift to adding the blueprints addon as a host
2929 // dependency on install.
3030 if ( this . project . addons . includes ( this ) ) {
31- this . project . addons . push ( this . addons . find ( addon => addon . name === 'ember-cli-typescript-blueprints' ) ) ;
31+ this . project . addons . splice (
32+ this . project . addons . map ( a => a . name ) . indexOf ( 'ember-cli-typescript' ) + 1 ,
33+ 0 ,
34+ this . addons . find ( addon => addon . name === 'ember-cli-typescript-blueprints' ) ) ;
3235 }
3336
3437 if ( this . project . isEmberCLIAddon ( ) ) {
You can’t perform that action at this time.
0 commit comments