File tree 3 files changed +218
-89
lines changed
3 files changed +218
-89
lines changed Original file line number Diff line number Diff line change 106
106
"ember-addon" : {
107
107
"configPath" : " tests/dummy/config" ,
108
108
"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"
110
116
]
111
117
},
112
118
"prettier" : {
Original file line number Diff line number Diff line change @@ -28,7 +28,10 @@ module.exports = {
28
28
// This won't be necessary in 2.x if we shift to adding the blueprints addon as a host
29
29
// dependency on install.
30
30
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' ) ) ;
32
35
}
33
36
34
37
if ( this . project . isEmberCLIAddon ( ) ) {
You can’t perform that action at this time.
0 commit comments