Skip to content

Commit 8b61091

Browse files
authored
Merge pull request #20988 from mansona/drop-ember-cli-htmlbars-inline-precompile
2 parents fd37595 + 71fbed3 commit 8b61091

2 files changed

Lines changed: 0 additions & 27 deletions

File tree

blueprints/component-test/index.js

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
const path = require('path');
44
const stringUtil = require('ember-cli-string-utils');
5-
const isPackageMissing = require('ember-cli-is-package-missing');
65
const getPathOption = require('ember-cli-get-component-path-option');
76
const 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
};

blueprints/helper-test/index.js

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
'use strict';
22

3-
const isPackageMissing = require('ember-cli-is-package-missing');
43
const semver = require('semver');
54

65
const 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
};

0 commit comments

Comments
 (0)