ember-cli 6.8.0-alpha.4 → 6.8.0-alpha.5
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.
- package/CHANGELOG.md +20 -0
- package/docs/build/data.json +1 -1
- package/lib/commands/addon.js +7 -1
- package/lib/commands/init.js +7 -1
- package/lib/commands/new.js +7 -1
- package/package.json +4 -4
- package/packages/addon-blueprint/package.json +1 -1
- package/packages/app-blueprint/files/package.json +1 -1
- package/packages/app-blueprint/package.json +1 -1
- package/packages/blueprint-model/package.json +1 -1
- package/packages/blueprint-model/utilities/experiments.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# ember-cli Changelog
|
|
2
2
|
|
|
3
|
+
## Release (2025-09-10)
|
|
4
|
+
|
|
5
|
+
* @ember-tooling/classic-build-addon-blueprint 6.8.0-alpha.5 (patch)
|
|
6
|
+
* @ember-tooling/classic-build-app-blueprint 6.8.0-alpha.5 (patch)
|
|
7
|
+
* @ember-tooling/blueprint-model 0.2.0 (minor)
|
|
8
|
+
* ember-cli 6.8.0-alpha.5 (patch)
|
|
9
|
+
|
|
10
|
+
#### :rocket: Enhancement
|
|
11
|
+
* `@ember-tooling/blueprint-model`
|
|
12
|
+
* [#10802](https://github.com/ember-cli/ember-cli/pull/10802) enable Vite by default ([@mansona](https://github.com/mansona))
|
|
13
|
+
* Other
|
|
14
|
+
* [#10804](https://github.com/ember-cli/ember-cli/pull/10804) Support a `--ts` alias for the `addon`, `init` and `new` commands ([@bertdeblock](https://github.com/bertdeblock))
|
|
15
|
+
|
|
16
|
+
#### :house: Internal
|
|
17
|
+
* [#10806](https://github.com/ember-cli/ember-cli/pull/10806) skip build watch tests when vite is enabled ([@mansona](https://github.com/mansona))
|
|
18
|
+
|
|
19
|
+
#### Committers: 2
|
|
20
|
+
- Bert De Block ([@bertdeblock](https://github.com/bertdeblock))
|
|
21
|
+
- Chris Manson ([@mansona](https://github.com/mansona))
|
|
22
|
+
|
|
3
23
|
## Release (2025-09-09)
|
|
4
24
|
|
|
5
25
|
* @ember-tooling/classic-build-addon-blueprint 6.8.0-alpha.4 (patch)
|
package/docs/build/data.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"logo": "https://ember-cli.com/assets/images/ember-cli-logo-small-dark.png",
|
|
4
4
|
"name": "ember-cli",
|
|
5
5
|
"description": "Command line tool for developing ambitious ember.js apps",
|
|
6
|
-
"version": "6.8.0-alpha.
|
|
6
|
+
"version": "6.8.0-alpha.5-master-d8f073aa8c"
|
|
7
7
|
},
|
|
8
8
|
"files": {
|
|
9
9
|
"lib/broccoli/default-packager.js": {
|
package/lib/commands/addon.js
CHANGED
|
@@ -31,7 +31,13 @@ module.exports = NewCommand.extend({
|
|
|
31
31
|
default: 'github',
|
|
32
32
|
description: 'Installs the optional default CI blueprint. Only Github Actions is supported at the moment.',
|
|
33
33
|
},
|
|
34
|
-
{
|
|
34
|
+
{
|
|
35
|
+
name: 'typescript',
|
|
36
|
+
type: Boolean,
|
|
37
|
+
default: false,
|
|
38
|
+
description: 'Set up the addon to use TypeScript',
|
|
39
|
+
aliases: ['ts'],
|
|
40
|
+
},
|
|
35
41
|
{
|
|
36
42
|
name: 'strict',
|
|
37
43
|
type: Boolean,
|
package/lib/commands/init.js
CHANGED
|
@@ -60,7 +60,13 @@ module.exports = Command.extend({
|
|
|
60
60
|
default: true,
|
|
61
61
|
description: 'Include ember-data dependencies and configuration',
|
|
62
62
|
},
|
|
63
|
-
{
|
|
63
|
+
{
|
|
64
|
+
name: 'typescript',
|
|
65
|
+
type: Boolean,
|
|
66
|
+
default: false,
|
|
67
|
+
description: 'Set up the app to use TypeScript',
|
|
68
|
+
aliases: ['ts'],
|
|
69
|
+
},
|
|
64
70
|
{
|
|
65
71
|
name: 'strict',
|
|
66
72
|
type: Boolean,
|
package/lib/commands/new.js
CHANGED
|
@@ -62,7 +62,13 @@ module.exports = Command.extend({
|
|
|
62
62
|
aliases: ['i'],
|
|
63
63
|
description: 'Create a new Ember app/addon in an interactive way.',
|
|
64
64
|
},
|
|
65
|
-
{
|
|
65
|
+
{
|
|
66
|
+
name: 'typescript',
|
|
67
|
+
type: Boolean,
|
|
68
|
+
default: false,
|
|
69
|
+
description: 'Set up the app to use TypeScript',
|
|
70
|
+
aliases: ['ts'],
|
|
71
|
+
},
|
|
66
72
|
{
|
|
67
73
|
name: 'strict',
|
|
68
74
|
type: Boolean,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ember-cli",
|
|
3
|
-
"version": "6.8.0-alpha.
|
|
3
|
+
"version": "6.8.0-alpha.5",
|
|
4
4
|
"description": "Command line tool for developing ambitious ember.js apps",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"app",
|
|
@@ -119,9 +119,9 @@
|
|
|
119
119
|
"workerpool": "^9.2.0",
|
|
120
120
|
"yam": "^1.0.0",
|
|
121
121
|
"@ember-tooling/blueprint-blueprint": "0.0.3",
|
|
122
|
-
"@ember-tooling/classic-build-addon-blueprint": "6.8.0-alpha.
|
|
123
|
-
"@ember-tooling/blueprint
|
|
124
|
-
"@ember-tooling/
|
|
122
|
+
"@ember-tooling/classic-build-addon-blueprint": "6.8.0-alpha.5",
|
|
123
|
+
"@ember-tooling/classic-build-app-blueprint": "6.8.0-alpha.5",
|
|
124
|
+
"@ember-tooling/blueprint-model": "0.2.0"
|
|
125
125
|
},
|
|
126
126
|
"devDependencies": {
|
|
127
127
|
"broccoli-plugin": "^4.0.3",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"broccoli-asset-rev": "^3.0.0",
|
|
61
61
|
"concurrently": "^9.2.0",
|
|
62
62
|
"ember-auto-import": "^2.10.0",
|
|
63
|
-
"ember-cli": "~6.8.0-alpha.
|
|
63
|
+
"ember-cli": "~6.8.0-alpha.5",
|
|
64
64
|
"ember-cli-app-version": "^7.0.0",
|
|
65
65
|
"ember-cli-babel": "^8.2.0",
|
|
66
66
|
"ember-cli-clean-css": "^3.0.0",
|
|
@@ -4,7 +4,7 @@ const chalk = require('chalk');
|
|
|
4
4
|
const availableExperiments = Object.freeze(['EMBROIDER', 'CLASSIC', 'VITE']);
|
|
5
5
|
|
|
6
6
|
const deprecatedExperiments = Object.freeze([]);
|
|
7
|
-
const enabledExperiments = Object.freeze([]);
|
|
7
|
+
const enabledExperiments = Object.freeze(['VITE']);
|
|
8
8
|
const deprecatedExperimentsDeprecationsIssued = [];
|
|
9
9
|
|
|
10
10
|
function isExperimentEnabled(experimentName) {
|