@ember-tooling/classic-build-addon-blueprint 6.12.0-alpha.1 → 6.12.0-beta.1

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.
@@ -2,5 +2,6 @@
2
2
  "application-template-wrapper": false,
3
3
  "default-async-observers": true,
4
4
  "jquery-integration": false,
5
- "template-only-glimmer-components": true
5
+ "template-only-glimmer-components": true,
6
+ "use-ember-modules": true
6
7
  }
package/index.js CHANGED
@@ -90,10 +90,6 @@ module.exports = {
90
90
  // @see https://github.com/emberjs/rfcs/blob/master/text/0811-element-modifiers.md#detailed-design
91
91
  delete contents.devDependencies['ember-modifier'];
92
92
 
93
- // Per RFC #812, addons should not have this dependency.
94
- // @see https://github.com/emberjs/rfcs/blob/master/text/0812-tracked-built-ins.md#detailed-design
95
- delete contents.devDependencies['tracked-built-ins'];
96
-
97
93
  // 100% of addons don't need ember-cli-app-version, make it opt-in instead
98
94
  delete contents.devDependencies['ember-cli-app-version'];
99
95
 
@@ -248,6 +244,7 @@ module.exports = {
248
244
  embroider: false,
249
245
  lang: options.lang,
250
246
  emberData: options.emberData,
247
+ warpDrive: options.warpDrive ?? options.emberData ?? false,
251
248
  ciProvider: options.ciProvider,
252
249
  typescript: options.typescript,
253
250
  strict: options.strict,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ember-tooling/classic-build-addon-blueprint",
3
- "version": "6.12.0-alpha.1",
3
+ "version": "6.12.0-beta.1",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/ember-cli/ember-cli.git",
@@ -11,22 +11,22 @@
11
11
  "ember-blueprint"
12
12
  ],
13
13
  "dependencies": {
14
+ "@ember-tooling/blueprint-model": "^0.5.0",
14
15
  "chalk": "^5.6.2",
15
16
  "ember-cli-normalize-entity-name": "^1.0.0",
16
17
  "ember-cli-string-utils": "^1.1.0",
17
- "fs-extra": "^11.3.0",
18
- "lodash": "^4.17.21",
18
+ "fs-extra": "^11.3.3",
19
+ "lodash": "^4.17.23",
19
20
  "silent-error": "^1.1.1",
20
- "sort-package-json": "^2.12.0",
21
- "walk-sync": "^3.0.0",
22
- "@ember-tooling/blueprint-model": "0.6.0"
21
+ "sort-package-json": "^2.15.1",
22
+ "walk-sync": "^3.0.0"
23
23
  },
24
24
  "release-plan": {
25
25
  "semverIncrementAs": {
26
26
  "minor": "prerelease",
27
27
  "patch": "prerelease"
28
28
  },
29
- "semverIncrementTag": "alpha",
30
- "publishTag": "alpha"
29
+ "semverIncrementTag": "beta",
30
+ "publishTag": "beta"
31
31
  }
32
32
  }