File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed
blueprints/ember-cli-typescript Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,10 @@ module.exports = {
3737 }
3838 } ,
3939
40+ blueprintsPath ( ) {
41+ return `${ __dirname } /blueprints` ;
42+ } ,
43+
4044 shouldIncludeChildAddon ( addon ) {
4145 // For testing, we have dummy in-repo addons set up, but e-c-ts doesn't depend on them;
4246 // its dummy app does. Otherwise we'd have a circular dependency.
Original file line number Diff line number Diff line change @@ -155,6 +155,10 @@ module.exports = {
155155 return this . addPackagesToProject ( packages ) ;
156156 } ,
157157
158+ filesPath ( ) {
159+ return `${ __dirname } /../../../blueprint-files/ember-cli-typescript` ;
160+ } ,
161+
158162 files ( ) {
159163 let files = this . _super . files . apply ( this , arguments ) ;
160164
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ module.exports = class SkeletonApp {
1010 constructor ( ) {
1111 this . _watched = null ;
1212 this . root = mktemp . createDirSync ( 'test-skeleton-app-XXXXXX' ) ;
13- fs . copySync ( `${ __dirname } /../fixtures/skeleton-app` , this . root ) ;
13+ fs . copySync ( `${ __dirname } /../../../test- fixtures/skeleton-app` , this . root ) ;
1414 }
1515
1616 build ( ) {
You can’t perform that action at this time.
0 commit comments