ember-source 4.4.0-alpha.4 → 4.4.0-alpha.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (85) hide show
  1. package/CHANGELOG.md +3 -5
  2. package/blueprints/-addon-import.js +9 -0
  3. package/blueprints/-maybe-polyfill-typescript-blueprints.js +17 -0
  4. package/blueprints/acceptance-test/index.js +8 -0
  5. package/blueprints/acceptance-test/mocha-rfc-232-files/tests/acceptance/{__name__-test.js → __name__-test.ts} +0 -0
  6. package/blueprints/acceptance-test/qunit-rfc-232-files/tests/acceptance/{__name__-test.js → __name__-test.ts} +0 -0
  7. package/blueprints/component/files/__root__/__path__/{__name__.js → __name__.ts} +0 -0
  8. package/blueprints/component/index.js +6 -1
  9. package/blueprints/component-addon/files/__root__/__path__/{__name__.js → __name__.ts} +0 -0
  10. package/blueprints/component-addon/index.js +9 -0
  11. package/blueprints/component-class/files/__root__/__path__/{__name__.js → __name__.ts} +0 -0
  12. package/blueprints/component-class/index.js +5 -0
  13. package/blueprints/component-class-addon/files/__root__/__path__/{__name__.js → __name__.ts} +0 -0
  14. package/blueprints/component-class-addon/index.js +9 -0
  15. package/blueprints/component-test/index.js +8 -0
  16. package/blueprints/component-test/mocha-rfc-232-files/__root__/__testType__/__path__/{__test__.js → __test__.ts} +0 -0
  17. package/blueprints/component-test/qunit-rfc-232-files/__root__/__testType__/__path__/{__test__.js → __test__.ts} +1 -1
  18. package/blueprints/controller/files/__root__/__path__/{__name__.js → __name__.ts} +0 -0
  19. package/blueprints/controller/index.js +10 -0
  20. package/blueprints/controller-test/index.js +10 -0
  21. package/blueprints/controller-test/mocha-rfc-232-files/__root__/__testType__/__path__/{__test__.js → __test__.ts} +0 -0
  22. package/blueprints/controller-test/qunit-rfc-232-files/__root__/__testType__/__path__/{__test__.js → __test__.ts} +0 -0
  23. package/blueprints/helper/files/__root__/__collection__/{__name__.js → __name__.ts} +0 -0
  24. package/blueprints/helper/index.js +9 -0
  25. package/blueprints/helper-addon/files/__root__/__path__/{__name__.js → __name__.ts} +0 -0
  26. package/blueprints/helper-test/index.js +9 -0
  27. package/blueprints/helper-test/mocha-rfc-232-files/__root__/__testType__/__collection__/{__name__-test.js → __name__-test.ts} +0 -0
  28. package/blueprints/helper-test/qunit-rfc-232-files/__root__/__testType__/__collection__/{__name__-test.js → __name__-test.ts} +0 -0
  29. package/blueprints/initializer/files/__root__/initializers/__name__.ts +6 -0
  30. package/blueprints/initializer/index.js +9 -0
  31. package/blueprints/initializer-addon/files/__root__/__path__/{__name__.js → __name__.ts} +0 -0
  32. package/blueprints/initializer-test/index.js +8 -0
  33. package/blueprints/initializer-test/mocha-rfc-232-files/__root__/__testType__/__path__/{__name__-test.js → __name__-test.ts} +3 -1
  34. package/blueprints/initializer-test/qunit-rfc-232-files/__root__/__testType__/__path__/__name__-test.ts +37 -0
  35. package/blueprints/instance-initializer/files/__root__/instance-initializers/__name__.ts +6 -0
  36. package/blueprints/instance-initializer/index.js +9 -0
  37. package/blueprints/instance-initializer-addon/files/__root__/__path__/{__name__.js → __name__.ts} +0 -0
  38. package/blueprints/instance-initializer-test/index.js +8 -0
  39. package/blueprints/instance-initializer-test/mocha-rfc-232-files/__root__/__testType__/__path__/{__name__-test.js → __name__-test.ts} +5 -1
  40. package/blueprints/instance-initializer-test/qunit-rfc-232-files/__root__/__testType__/__path__/{__name__-test.js → __name__-test.ts} +6 -1
  41. package/blueprints/route/files/__root__/__path__/{__name__.js → __name__.ts} +2 -4
  42. package/blueprints/route/index.js +9 -0
  43. package/blueprints/route-addon/files/__root__/__path__/{__name__.js → __name__.ts} +0 -0
  44. package/blueprints/route-addon/index.js +9 -0
  45. package/blueprints/route-test/index.js +9 -0
  46. package/blueprints/route-test/mocha-rfc-232-files/__root__/__testType__/__path__/{__test__.js → __test__.ts} +0 -0
  47. package/blueprints/route-test/qunit-rfc-232-files/__root__/__testType__/__path__/{__test__.js → __test__.ts} +0 -0
  48. package/blueprints/service/files/__root__/__path__/{__name__.js → __name__.ts} +0 -0
  49. package/blueprints/service/index.js +10 -0
  50. package/blueprints/service-test/index.js +8 -0
  51. package/blueprints/service-test/mocha-rfc-232-files/__root__/__testType__/__path__/{__test__.js → __test__.ts} +0 -0
  52. package/blueprints/service-test/qunit-rfc-232-files/__root__/__testType__/__path__/{__test__.js → __test__.ts} +0 -0
  53. package/blueprints/util/files/__root__/utils/{__name__.js → __name__.ts} +0 -0
  54. package/blueprints/util/index.js +10 -0
  55. package/blueprints/util-test/index.js +8 -0
  56. package/blueprints/util-test/mocha-rfc-232-files/__root__/__testType__/{__name__-test.js → __name__-test.ts} +0 -0
  57. package/blueprints/util-test/qunit-rfc-232-files/__root__/__testType__/{__name__-test.js → __name__-test.ts} +0 -0
  58. package/build-metadata.json +3 -3
  59. package/dist/ember-template-compiler.js +10 -12
  60. package/dist/ember-template-compiler.map +1 -1
  61. package/dist/ember-testing.js +7 -3
  62. package/dist/ember-testing.map +1 -1
  63. package/dist/ember.debug.js +484 -785
  64. package/dist/ember.debug.map +1 -1
  65. package/dist/header/license.js +1 -1
  66. package/dist/packages/@ember/-internals/container/index.js +1 -10
  67. package/dist/packages/@ember/-internals/glimmer/index.js +107 -218
  68. package/dist/packages/@ember/-internals/meta/lib/meta.js +1 -1
  69. package/dist/packages/@ember/-internals/metal/index.js +22 -21
  70. package/dist/packages/@ember/-internals/routing/lib/services/router.js +140 -145
  71. package/dist/packages/@ember/-internals/routing/lib/system/route-info.js +4 -0
  72. package/dist/packages/@ember/-internals/routing/lib/system/router.js +2 -0
  73. package/dist/packages/@ember/-internals/routing/lib/system/transition.js +4 -0
  74. package/dist/packages/@ember/-internals/runtime/lib/system/core_object.js +118 -302
  75. package/dist/packages/@ember/-internals/runtime/lib/system/object.js +8 -23
  76. package/dist/packages/@ember/-internals/views/lib/views/core_view.js +47 -29
  77. package/dist/packages/@ember/canary-features/index.js +1 -5
  78. package/dist/packages/@ember/debug/lib/deprecate.js +6 -2
  79. package/dist/packages/ember/version.js +1 -1
  80. package/docs/data.json +448 -810
  81. package/package.json +20 -17
  82. package/blueprints/initializer/files/__root__/initializers/__name__.js +0 -5
  83. package/blueprints/initializer-test/qunit-rfc-232-files/__root__/__testType__/__path__/__name__-test.js +0 -34
  84. package/blueprints/instance-initializer/files/__root__/instance-initializers/__name__.js +0 -5
  85. package/dist/packages/@ember/renderer/index.js +0 -21
package/CHANGELOG.md CHANGED
@@ -1,12 +1,10 @@
1
1
  # Ember Changelog
2
2
 
3
- ### v4.3.0-beta.2 (March 1, 2022)
3
+ ### v4.3.0 (March 21, 2022)
4
4
 
5
+ - [#20025](https://github.com/emberjs/ember.js/pull/20025) [BUGFIX] Fix a memory leak in the Router Service class
5
6
  - [#19971](https://github.com/emberjs/ember.js/pull/19971) [BUGFIX] Don't serialize default Query Params on RouterService
6
-
7
- ### v4.3.0-beta.1 (February 7, 2022)
8
-
9
- No public API changes or bugfixes.
7
+ - [#20024](https://github.com/emberjs/ember.js/pull/20024) [BUGFIX] Correctly associate props with factory and owner in FactoryManager
10
8
 
11
9
  ### v4.2.0 (February 7, 2022)
12
10
 
@@ -4,9 +4,18 @@ const stringUtil = require('ember-cli-string-utils');
4
4
  const path = require('path');
5
5
  const inflector = require('inflection');
6
6
 
7
+ const maybePolyfillTypeScriptBlueprints = require('./-maybe-polyfill-typescript-blueprints');
8
+
7
9
  module.exports = {
8
10
  description: 'Generates an import wrapper.',
9
11
 
12
+ shouldTransformTypeScript: true,
13
+
14
+ init() {
15
+ this._super && this._super.init.apply(this, arguments);
16
+ maybePolyfillTypeScriptBlueprints(this);
17
+ },
18
+
10
19
  fileMapTokens: function () {
11
20
  return {
12
21
  __name__: function (options) {
@@ -0,0 +1,17 @@
1
+ const typescriptBlueprintPolyfill = require('ember-cli-typescript-blueprint-polyfill');
2
+ const EMBER_TYPESCRIPT_BLUEPRINTS = false;
3
+
4
+ function canEmitTypeScript() {
5
+ return 'EMBER_TYPESCRIPT_BLUEPRINTS' in process.env
6
+ ? process.env.EMBER_TYPESCRIPT_BLUEPRINTS
7
+ : EMBER_TYPESCRIPT_BLUEPRINTS;
8
+ }
9
+
10
+ module.exports = function (context) {
11
+ if (canEmitTypeScript()) {
12
+ typescriptBlueprintPolyfill(context);
13
+ } else {
14
+ // Use the plain old JS templates from before
15
+ context.path = context.path.replace('blueprints', 'blueprints-js');
16
+ }
17
+ };
@@ -5,11 +5,19 @@ const path = require('path');
5
5
  const pathUtil = require('ember-cli-path-utils');
6
6
  const stringUtils = require('ember-cli-string-utils');
7
7
 
8
+ const maybePolyfillTypeScriptBlueprints = require('../-maybe-polyfill-typescript-blueprints');
8
9
  const useTestFrameworkDetector = require('../test-framework-detector');
9
10
 
10
11
  module.exports = useTestFrameworkDetector({
11
12
  description: 'Generates an acceptance test for a feature.',
12
13
 
14
+ shouldTransformTypeScript: true,
15
+
16
+ init() {
17
+ this._super && this._super.init.apply(this, arguments);
18
+ maybePolyfillTypeScriptBlueprints(this);
19
+ },
20
+
13
21
  locals: function (options) {
14
22
  let testFolderRoot = stringUtils.dasherize(options.project.name());
15
23
 
@@ -10,6 +10,8 @@ const normalizeEntityName = require('ember-cli-normalize-entity-name');
10
10
  const { EOL } = require('os');
11
11
  const { has } = require('@ember/edition-utils');
12
12
 
13
+ const maybePolyfillTypeScriptBlueprints = require('../-maybe-polyfill-typescript-blueprints');
14
+
13
15
  const OCTANE = has('octane');
14
16
 
15
17
  // TODO: this should be reading from the @ember/canary-features module
@@ -21,6 +23,8 @@ const EMBER_GLIMMER_SET_COMPONENT_TEMPLATE = true;
21
23
  module.exports = {
22
24
  description: 'Generates a component.',
23
25
 
26
+ shouldTransformTypeScript: true,
27
+
24
28
  availableOptions: [
25
29
  {
26
30
  name: 'path',
@@ -51,6 +55,7 @@ module.exports = {
51
55
 
52
56
  init() {
53
57
  this._super && this._super.init.apply(this, arguments);
58
+ maybePolyfillTypeScriptBlueprints(this);
54
59
  let isOctane = has('octane');
55
60
 
56
61
  this.availableOptions.forEach((option) => {
@@ -203,7 +208,7 @@ module.exports = {
203
208
 
204
209
  if (this.EMBER_GLIMMER_SET_COMPONENT_TEMPLATE && this.options.componentClass === '') {
205
210
  files = files.filter((file) => {
206
- if (file.endsWith('.js')) {
211
+ if (file.endsWith('.js') || file.endsWith('.ts')) {
207
212
  this.skippedJsFiles.add(file);
208
213
  return false;
209
214
  } else {
@@ -5,9 +5,18 @@ const stringUtil = require('ember-cli-string-utils');
5
5
  const getPathOption = require('ember-cli-get-component-path-option');
6
6
  const normalizeEntityName = require('ember-cli-normalize-entity-name');
7
7
 
8
+ const maybePolyfillTypeScriptBlueprints = require('../-maybe-polyfill-typescript-blueprints');
9
+
8
10
  module.exports = {
9
11
  description: 'Generates a component.',
10
12
 
13
+ shouldTransformTypeScript: true,
14
+
15
+ init() {
16
+ this._super && this._super.init.apply(this, arguments);
17
+ maybePolyfillTypeScriptBlueprints(this);
18
+ },
19
+
11
20
  fileMapTokens: function () {
12
21
  return {
13
22
  __path__: function (options) {
@@ -9,6 +9,8 @@ const normalizeEntityName = require('ember-cli-normalize-entity-name');
9
9
  const { EOL } = require('os');
10
10
  const { has } = require('@ember/edition-utils');
11
11
 
12
+ const maybePolyfillTypeScriptBlueprints = require('../-maybe-polyfill-typescript-blueprints');
13
+
12
14
  const OCTANE = has('octane');
13
15
 
14
16
  // TODO: this should be reading from the @ember/canary-features module
@@ -20,6 +22,8 @@ const EMBER_GLIMMER_SET_COMPONENT_TEMPLATE = true;
20
22
  module.exports = {
21
23
  description: 'Generates a component class.',
22
24
 
25
+ shouldTransformTypeScript: true,
26
+
23
27
  availableOptions: [
24
28
  {
25
29
  name: 'path',
@@ -47,6 +51,7 @@ module.exports = {
47
51
 
48
52
  init() {
49
53
  this._super && this._super.init.apply(this, arguments);
54
+ maybePolyfillTypeScriptBlueprints(this);
50
55
  let isOctane = has('octane');
51
56
 
52
57
  this.availableOptions.forEach((option) => {
@@ -5,9 +5,18 @@ const stringUtil = require('ember-cli-string-utils');
5
5
  const getPathOption = require('ember-cli-get-component-path-option');
6
6
  const normalizeEntityName = require('ember-cli-normalize-entity-name');
7
7
 
8
+ const maybePolyfillTypeScriptBlueprints = require('../-maybe-polyfill-typescript-blueprints');
9
+
8
10
  module.exports = {
9
11
  description: 'Generates a component class.',
10
12
 
13
+ shouldTransformTypeScript: true,
14
+
15
+ init() {
16
+ this._super && this._super.init.apply(this, arguments);
17
+ maybePolyfillTypeScriptBlueprints(this);
18
+ },
19
+
11
20
  fileMapTokens: function () {
12
21
  return {
13
22
  __path__: function (options) {
@@ -6,6 +6,7 @@ const isPackageMissing = require('ember-cli-is-package-missing');
6
6
  const getPathOption = require('ember-cli-get-component-path-option');
7
7
  const semver = require('semver');
8
8
 
9
+ const maybePolyfillTypeScriptBlueprints = require('../-maybe-polyfill-typescript-blueprints');
9
10
  const useTestFrameworkDetector = require('../test-framework-detector');
10
11
 
11
12
  function invocationFor(options) {
@@ -16,6 +17,13 @@ function invocationFor(options) {
16
17
  module.exports = useTestFrameworkDetector({
17
18
  description: 'Generates a component integration or unit test.',
18
19
 
20
+ shouldTransformTypeScript: true,
21
+
22
+ init() {
23
+ this._super && this._super.init.apply(this, arguments);
24
+ maybePolyfillTypeScriptBlueprints(this);
25
+ },
26
+
19
27
  availableOptions: [
20
28
  {
21
29
  name: 'test-type',
@@ -33,4 +33,4 @@ module('<%= friendlyTestDescription %>', function (hooks) {
33
33
  let component = this.owner.factoryFor('component:<%= componentPathName %>').create();
34
34
  assert.ok(component);
35
35
  });
36
- });<% } %>
36
+ }); <% } %>
@@ -1,7 +1,17 @@
1
1
  'use strict';
2
2
 
3
+ const maybePolyfillTypeScriptBlueprints = require('../-maybe-polyfill-typescript-blueprints');
4
+
3
5
  module.exports = {
4
6
  description: 'Generates a controller.',
7
+
8
+ shouldTransformTypeScript: true,
9
+
10
+ init() {
11
+ this._super && this._super.init.apply(this, arguments);
12
+ maybePolyfillTypeScriptBlueprints(this);
13
+ },
14
+
5
15
  normalizeEntityName: function (entityName) {
6
16
  return entityName.replace(/\.js$/, ''); //Prevent generation of ".js.js" files
7
17
  },
@@ -5,8 +5,18 @@ const stringUtil = require('ember-cli-string-utils');
5
5
  const useTestFrameworkDetector = require('../test-framework-detector');
6
6
  const path = require('path');
7
7
 
8
+ const maybePolyfillTypeScriptBlueprints = require('../-maybe-polyfill-typescript-blueprints');
9
+
8
10
  module.exports = useTestFrameworkDetector({
9
11
  description: 'Generates a controller unit test.',
12
+
13
+ shouldTransformTypeScript: true,
14
+
15
+ init() {
16
+ this._super && this._super.init.apply(this, arguments);
17
+ maybePolyfillTypeScriptBlueprints(this);
18
+ },
19
+
10
20
  locals: function (options) {
11
21
  let dasherizedModuleName = stringUtil.dasherize(options.entity.name);
12
22
  let controllerPathName = dasherizedModuleName;
@@ -2,11 +2,20 @@
2
2
 
3
3
  const normalizeEntityName = require('ember-cli-normalize-entity-name');
4
4
 
5
+ const maybePolyfillTypeScriptBlueprints = require('../-maybe-polyfill-typescript-blueprints');
6
+
5
7
  const path = require('path');
6
8
 
7
9
  module.exports = {
8
10
  description: 'Generates a helper function.',
9
11
 
12
+ shouldTransformTypeScript: true,
13
+
14
+ init() {
15
+ this._super && this._super.init.apply(this, arguments);
16
+ maybePolyfillTypeScriptBlueprints(this);
17
+ },
18
+
10
19
  filesPath() {
11
20
  let rootPath = 'files';
12
21
  return path.join(this.path, rootPath);
@@ -4,11 +4,20 @@ const stringUtils = require('ember-cli-string-utils');
4
4
  const isPackageMissing = require('ember-cli-is-package-missing');
5
5
  const semver = require('semver');
6
6
 
7
+ const maybePolyfillTypeScriptBlueprints = require('../-maybe-polyfill-typescript-blueprints');
8
+
7
9
  const useTestFrameworkDetector = require('../test-framework-detector');
8
10
 
9
11
  module.exports = useTestFrameworkDetector({
10
12
  description: 'Generates a helper integration test.',
11
13
 
14
+ shouldTransformTypeScript: true,
15
+
16
+ init() {
17
+ this._super && this._super.init.apply(this, arguments);
18
+ maybePolyfillTypeScriptBlueprints(this);
19
+ },
20
+
12
21
  fileMapTokens: function () {
13
22
  return {
14
23
  __root__() {
@@ -0,0 +1,6 @@
1
+ export function initialize(application) {
2
+ }
3
+
4
+ export default {
5
+ initialize
6
+ };
@@ -1,5 +1,14 @@
1
1
  'use strict';
2
2
 
3
+ const maybePolyfillTypeScriptBlueprints = require('../-maybe-polyfill-typescript-blueprints');
4
+
3
5
  module.exports = {
4
6
  description: 'Generates an initializer.',
7
+
8
+ shouldTransformTypeScript: true,
9
+
10
+ init() {
11
+ this._super && this._super.init.apply(this, arguments);
12
+ maybePolyfillTypeScriptBlueprints(this);
13
+ },
5
14
  };
@@ -4,11 +4,19 @@ const fs = require('fs');
4
4
  const path = require('path');
5
5
  const stringUtils = require('ember-cli-string-utils');
6
6
 
7
+ const maybePolyfillTypeScriptBlueprints = require('../-maybe-polyfill-typescript-blueprints');
7
8
  const useTestFrameworkDetector = require('../test-framework-detector');
8
9
 
9
10
  module.exports = useTestFrameworkDetector({
10
11
  description: 'Generates an initializer unit test.',
11
12
 
13
+ shouldTransformTypeScript: true,
14
+
15
+ init() {
16
+ this._super && this._super.init.apply(this, arguments);
17
+ maybePolyfillTypeScriptBlueprints(this);
18
+ },
19
+
12
20
  fileMapTokens: function () {
13
21
  return {
14
22
  __root__() {
@@ -12,7 +12,9 @@ describe('<%= friendlyTestName %>', function () {
12
12
  initialize,
13
13
  });
14
14
 
15
- this.application = this.TestApplication.create({ autoboot: false });
15
+ this.application = this.TestApplication.create({
16
+ autoboot: false
17
+ });
16
18
  });
17
19
 
18
20
  afterEach(function () {
@@ -0,0 +1,37 @@
1
+ import Application from '@ember/application';
2
+
3
+ import config from '<%= modulePrefix %>/config/environment';
4
+ import { initialize } from '<%= modulePrefix %>/initializers/<%= dasherizedModuleName %>';
5
+ import { module, test } from 'qunit';
6
+ import Resolver from 'ember-resolver';
7
+ <% if (destroyAppExists) { %>import destroyApp from '../../helpers/destroy-app'; <% } else { %>import { run } from '@ember/runloop'; <% } %>
8
+
9
+ module('<%= friendlyTestName %>', function (hooks) {
10
+ hooks.beforeEach(function () {
11
+ this.TestApplication = class TestApplication extends Application {
12
+ modulePrefix = config.modulePrefix;
13
+ podModulePrefix = config.podModulePrefix;
14
+ Resolver = Resolver;
15
+ };
16
+
17
+ this.TestApplication.initializer({
18
+ name: 'initializer under test',
19
+ initialize,
20
+ });
21
+
22
+ this.application = this.TestApplication.create({
23
+ autoboot: false
24
+ });
25
+ });
26
+
27
+ hooks.afterEach(function () {
28
+ <% if (destroyAppExists) { %> destroyApp(this.application); <% } else { %> run(this.application, 'destroy'); <% } %>
29
+ });
30
+
31
+ // TODO: Replace this with your real tests.
32
+ test('it works', async function (assert) {
33
+ await this.application.boot();
34
+
35
+ assert.ok(true);
36
+ });
37
+ });
@@ -0,0 +1,6 @@
1
+ export function initialize(owner) {
2
+ }
3
+
4
+ export default {
5
+ initialize
6
+ };
@@ -1,5 +1,14 @@
1
1
  'use strict';
2
2
 
3
+ const maybePolyfillTypeScriptBlueprints = require('../-maybe-polyfill-typescript-blueprints');
4
+
3
5
  module.exports = {
6
+ shouldTransformTypeScript: true,
7
+
4
8
  description: 'Generates an instance initializer.',
9
+
10
+ init() {
11
+ this._super && this._super.init.apply(this, arguments);
12
+ maybePolyfillTypeScriptBlueprints(this);
13
+ },
5
14
  };
@@ -4,11 +4,19 @@ const fs = require('fs');
4
4
  const path = require('path');
5
5
  const stringUtils = require('ember-cli-string-utils');
6
6
 
7
+ const maybePolyfillTypeScriptBlueprints = require('../-maybe-polyfill-typescript-blueprints');
7
8
  const useTestFrameworkDetector = require('../test-framework-detector');
8
9
 
9
10
  module.exports = useTestFrameworkDetector({
10
11
  description: 'Generates an instance initializer unit test.',
11
12
 
13
+ shouldTransformTypeScript: true,
14
+
15
+ init() {
16
+ this._super && this._super.init.apply(this, arguments);
17
+ maybePolyfillTypeScriptBlueprints(this);
18
+ },
19
+
12
20
  fileMapTokens: function () {
13
21
  return {
14
22
  __root__() {
@@ -11,7 +11,11 @@ describe('<%= friendlyTestName %>', function () {
11
11
  name: 'initializer under test',
12
12
  initialize,
13
13
  });
14
- this.application = this.TestApplication.create({ autoboot: false });
14
+
15
+ this.application = this.TestApplication.create({
16
+ autoboot: false
17
+ });
18
+
15
19
  this.instance = this.application.buildInstance();
16
20
  });
17
21
  afterEach(function () {
@@ -13,11 +13,16 @@ module('<%= friendlyTestName %>', function (hooks) {
13
13
  podModulePrefix = config.podModulePrefix;
14
14
  Resolver = Resolver;
15
15
  };
16
+
16
17
  this.TestApplication.instanceInitializer({
17
18
  name: 'initializer under test',
18
19
  initialize,
19
20
  });
20
- this.application = this.TestApplication.create({ autoboot: false });
21
+
22
+ this.application = this.TestApplication.create({
23
+ autoboot: false
24
+ });
25
+
21
26
  this.instance = this.application.buildInstance();
22
27
  });
23
28
  hooks.afterEach(function () {
@@ -2,10 +2,8 @@ import Route from '@ember/routing/route';
2
2
 
3
3
  export default class <%= classifiedModuleName %>Route extends Route {<% if (hasDynamicSegment) {%>
4
4
  model(params) {
5
- /**
6
- * This route was generated with a dynamic segment. Implement data loading
7
- * based on that dynamic segment here in the model hook.
8
- */
5
+ // This route was generated with a dynamic segment. Implement data loading
6
+ // based on that dynamic segment here in the model hook.
9
7
  return params;
10
8
  }
11
9
  <%}%>}
@@ -6,9 +6,13 @@ const chalk = require('chalk');
6
6
  const stringUtil = require('ember-cli-string-utils');
7
7
  const EmberRouterGenerator = require('ember-router-generator');
8
8
 
9
+ const maybePolyfillTypeScriptBlueprints = require('../-maybe-polyfill-typescript-blueprints');
10
+
9
11
  module.exports = {
10
12
  description: 'Generates a route and a template, and registers the route with the router.',
11
13
 
14
+ shouldTransformTypeScript: true,
15
+
12
16
  availableOptions: [
13
17
  {
14
18
  name: 'path',
@@ -26,6 +30,11 @@ module.exports = {
26
30
  },
27
31
  ],
28
32
 
33
+ init() {
34
+ this._super && this._super.init.apply(this, arguments);
35
+ maybePolyfillTypeScriptBlueprints(this);
36
+ },
37
+
29
38
  fileMapTokens: function () {
30
39
  return {
31
40
  __name__(options) {
@@ -4,9 +4,18 @@ const path = require('path');
4
4
  const stringUtil = require('ember-cli-string-utils');
5
5
  const inflector = require('inflection');
6
6
 
7
+ const maybePolyfillTypeScriptBlueprints = require('../-maybe-polyfill-typescript-blueprints');
8
+
7
9
  module.exports = {
8
10
  description: 'Generates import wrappers for a route and its template.',
9
11
 
12
+ shouldTransformTypeScript: true,
13
+
14
+ init() {
15
+ this._super && this._super.init.apply(this, arguments);
16
+ maybePolyfillTypeScriptBlueprints(this);
17
+ },
18
+
10
19
  fileMapTokens: function () {
11
20
  return {
12
21
  __templatepath__: function (options) {
@@ -2,11 +2,20 @@
2
2
 
3
3
  const path = require('path');
4
4
  const stringUtil = require('ember-cli-string-utils');
5
+
5
6
  const useTestFrameworkDetector = require('../test-framework-detector');
7
+ const maybePolyfillTypeScriptBlueprints = require('../-maybe-polyfill-typescript-blueprints');
6
8
 
7
9
  module.exports = useTestFrameworkDetector({
8
10
  description: 'Generates a route unit test.',
9
11
 
12
+ shouldTransformTypeScript: true,
13
+
14
+ init() {
15
+ this._super && this._super.init.apply(this, arguments);
16
+ maybePolyfillTypeScriptBlueprints(this);
17
+ },
18
+
10
19
  availableOptions: [
11
20
  {
12
21
  name: 'reset-namespace',
@@ -1,7 +1,17 @@
1
1
  'use strict';
2
2
 
3
+ const maybePolyfillTypeScriptBlueprints = require('../-maybe-polyfill-typescript-blueprints');
4
+
3
5
  module.exports = {
4
6
  description: 'Generates a service.',
7
+
8
+ shouldTransformTypeScript: true,
9
+
10
+ init() {
11
+ this._super && this._super.init.apply(this, arguments);
12
+ maybePolyfillTypeScriptBlueprints(this);
13
+ },
14
+
5
15
  normalizeEntityName: function (entityName) {
6
16
  return entityName.replace(/\.js$/, ''); //Prevent generation of ".js.js" files
7
17
  },
@@ -1,10 +1,18 @@
1
1
  'use strict';
2
2
 
3
+ const maybePolyfillTypeScriptBlueprints = require('../-maybe-polyfill-typescript-blueprints');
3
4
  const useTestFrameworkDetector = require('../test-framework-detector');
4
5
 
5
6
  module.exports = useTestFrameworkDetector({
6
7
  description: 'Generates a service unit test.',
7
8
 
9
+ shouldTransformTypeScript: true,
10
+
11
+ init() {
12
+ this._super && this._super.init.apply(this, arguments);
13
+ maybePolyfillTypeScriptBlueprints(this);
14
+ },
15
+
8
16
  fileMapTokens() {
9
17
  return {
10
18
  __root__() {