ember-cli 6.8.0-alpha.3 → 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 +37 -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 +5 -5
- package/packages/addon-blueprint/package.json +4 -1
- package/packages/app-blueprint/files/app/app.ts +2 -1
- package/packages/app-blueprint/files/package.json +1 -1
- package/packages/app-blueprint/package.json +4 -1
- package/packages/blueprint-blueprint/package.json +5 -2
- package/packages/blueprint-model/package.json +1 -1
- package/packages/blueprint-model/utilities/experiments.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,42 @@
|
|
|
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
|
+
|
|
23
|
+
## Release (2025-09-09)
|
|
24
|
+
|
|
25
|
+
* @ember-tooling/classic-build-addon-blueprint 6.8.0-alpha.4 (patch)
|
|
26
|
+
* @ember-tooling/classic-build-app-blueprint 6.8.0-alpha.4 (patch)
|
|
27
|
+
* @ember-tooling/blueprint-blueprint 0.0.3 (patch)
|
|
28
|
+
* ember-cli 6.8.0-alpha.4 (patch)
|
|
29
|
+
|
|
30
|
+
#### :bug: Bug Fix
|
|
31
|
+
* `@ember-tooling/classic-build-addon-blueprint`, `@ember-tooling/classic-build-app-blueprint`, `@ember-tooling/blueprint-blueprint`
|
|
32
|
+
* [#10803](https://github.com/ember-cli/ember-cli/pull/10803) Add "ember-blueprint" to keywords in `package.json` for the classic blueprints ([@pichfl](https://github.com/pichfl))
|
|
33
|
+
* `@ember-tooling/classic-build-app-blueprint`
|
|
34
|
+
* [#10798](https://github.com/ember-cli/ember-cli/pull/10798) Add import from ember-data breakage/deprecation ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
|
|
35
|
+
|
|
36
|
+
#### Committers: 2
|
|
37
|
+
- Florian Pichler ([@pichfl](https://github.com/pichfl))
|
|
38
|
+
- [@NullVoxPopuli](https://github.com/NullVoxPopuli)
|
|
39
|
+
|
|
3
40
|
## Release (2025-09-05)
|
|
4
41
|
|
|
5
42
|
* @ember-tooling/classic-build-addon-blueprint 6.8.0-alpha.3 (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",
|
|
@@ -118,10 +118,10 @@
|
|
|
118
118
|
"watch-detector": "^1.0.2",
|
|
119
119
|
"workerpool": "^9.2.0",
|
|
120
120
|
"yam": "^1.0.0",
|
|
121
|
-
"@ember-tooling/blueprint-
|
|
122
|
-
"@ember-tooling/
|
|
123
|
-
"@ember-tooling/classic-build-
|
|
124
|
-
"@ember-tooling/
|
|
121
|
+
"@ember-tooling/blueprint-blueprint": "0.0.3",
|
|
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",
|
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ember-tooling/classic-build-addon-blueprint",
|
|
3
|
-
"version": "6.8.0-alpha.
|
|
3
|
+
"version": "6.8.0-alpha.5",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/ember-cli/ember-cli.git",
|
|
7
7
|
"directory": "packages/addon-blueprint"
|
|
8
8
|
},
|
|
9
|
+
"keywords": [
|
|
10
|
+
"ember-blueprint"
|
|
11
|
+
],
|
|
9
12
|
"dependencies": {
|
|
10
13
|
"@ember-tooling/blueprint-model": "workspace:*",
|
|
11
14
|
"chalk": "^4.1.2",
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
<% if (emberData) { %>import '@warp-drive/ember/install';
|
|
2
|
+
<% } %>import Application from '@ember/application';
|
|
2
3
|
import Resolver from 'ember-resolver';
|
|
3
4
|
import loadInitializers from 'ember-load-initializers';
|
|
4
5
|
import config from '<%= modulePrefix %>/config/environment';
|
|
@@ -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",
|
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ember-tooling/classic-build-app-blueprint",
|
|
3
|
-
"version": "6.8.0-alpha.
|
|
3
|
+
"version": "6.8.0-alpha.5",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/ember-cli/ember-cli.git",
|
|
7
7
|
"directory": "packages/app-blueprint"
|
|
8
8
|
},
|
|
9
|
+
"keywords": [
|
|
10
|
+
"ember-blueprint"
|
|
11
|
+
],
|
|
9
12
|
"dependencies": {
|
|
10
13
|
"@ember-tooling/blueprint-model": "workspace:*",
|
|
11
14
|
"chalk": "^4.1.2",
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ember-tooling/blueprint-blueprint",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/ember-cli/ember-cli.git",
|
|
7
7
|
"directory": "packages/blueprint-blueprint"
|
|
8
|
-
}
|
|
8
|
+
},
|
|
9
|
+
"keywords": [
|
|
10
|
+
"ember-blueprint"
|
|
11
|
+
]
|
|
9
12
|
}
|
|
@@ -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) {
|