File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22
33const path = require ( 'path' ) ;
44const stringUtil = require ( 'ember-cli-string-utils' ) ;
5- const isPackageMissing = require ( 'ember-cli-is-package-missing' ) ;
65const getPathOption = require ( 'ember-cli-get-component-path-option' ) ;
76const semver = require ( 'semver' ) ;
87
@@ -142,17 +141,4 @@ module.exports = {
142141
143142 return false ;
144143 } ,
145-
146- afterInstall : function ( options ) {
147- if (
148- ! options . dryRun &&
149- options . testType === 'integration' &&
150- ! this . _useNamedHbsImport ( ) &&
151- isPackageMissing ( this , 'ember-cli-htmlbars-inline-precompile' )
152- ) {
153- return this . addPackagesToProject ( [
154- { name : 'ember-cli-htmlbars-inline-precompile' , target : '^0.3.1' } ,
155- ] ) ;
156- }
157- } ,
158144} ;
Original file line number Diff line number Diff line change 11'use strict' ;
22
3- const isPackageMissing = require ( 'ember-cli-is-package-missing' ) ;
43const semver = require ( 'semver' ) ;
54
65const typescriptBlueprintPolyfill = require ( 'ember-cli-typescript-blueprint-polyfill' ) ;
@@ -50,16 +49,4 @@ module.exports = {
5049
5150 return false ;
5251 } ,
53-
54- afterInstall : function ( options ) {
55- if (
56- ! options . dryRun &&
57- ! this . _useNamedHbsImport ( ) &&
58- isPackageMissing ( this , 'ember-cli-htmlbars-inline-precompile' )
59- ) {
60- return this . addPackagesToProject ( [
61- { name : 'ember-cli-htmlbars-inline-precompile' , target : '^0.3.1' } ,
62- ] ) ;
63- }
64- } ,
6552} ;
You can’t perform that action at this time.
0 commit comments