ember-cli 6.8.0-beta.2 → 6.8.0-beta.3
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
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# ember-cli Changelog
|
|
2
2
|
|
|
3
|
+
## Release (2025-10-03)
|
|
4
|
+
|
|
5
|
+
* ember-cli 6.8.0-beta.3 (patch)
|
|
6
|
+
|
|
7
|
+
#### :bug: Bug Fix
|
|
8
|
+
* `ember-cli`
|
|
9
|
+
* [#10826](https://github.com/ember-cli/ember-cli/pull/10826) move resolution of @ember/app-blueprint to prevent loading latest ([@mansona](https://github.com/mansona))
|
|
10
|
+
|
|
11
|
+
#### Committers: 1
|
|
12
|
+
- Chris Manson ([@mansona](https://github.com/mansona))
|
|
13
|
+
|
|
3
14
|
## Release (2025-10-02)
|
|
4
15
|
|
|
5
16
|
* ember-cli 6.8.0-beta.2 (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-beta.
|
|
6
|
+
"version": "6.8.0-beta.3-beta-68a4318d35"
|
|
7
7
|
},
|
|
8
8
|
"files": {
|
|
9
9
|
"lib/broccoli/default-packager.js": {
|
package/lib/commands/init.js
CHANGED
|
@@ -12,8 +12,6 @@ const { isPnpmProject, isYarnProject } = require('../utilities/package-managers'
|
|
|
12
12
|
const getLangArg = require('../../lib/utilities/get-lang-arg');
|
|
13
13
|
const { deprecate, DEPRECATIONS } = require('../debug');
|
|
14
14
|
|
|
15
|
-
const { isExperimentEnabled } = require('@ember-tooling/blueprint-model/utilities/experiments');
|
|
16
|
-
|
|
17
15
|
module.exports = Command.extend({
|
|
18
16
|
name: 'init',
|
|
19
17
|
description: 'Reinitializes a new ember-cli project in the current folder.',
|
|
@@ -126,10 +124,6 @@ module.exports = Command.extend({
|
|
|
126
124
|
let blueprintOpts = clone(commandOptions);
|
|
127
125
|
let blueprint = normalizeBlueprint(blueprintOpts.blueprint || this._defaultBlueprint());
|
|
128
126
|
|
|
129
|
-
if (isExperimentEnabled('VITE') && blueprint === 'app') {
|
|
130
|
-
blueprint = '@ember/app-blueprint';
|
|
131
|
-
}
|
|
132
|
-
|
|
133
127
|
merge(blueprintOpts, {
|
|
134
128
|
rawName: packageName,
|
|
135
129
|
targetFiles: rawArgs || [],
|
|
@@ -13,6 +13,7 @@ const npa = require('npm-package-arg');
|
|
|
13
13
|
const lintFix = require('../utilities/lint-fix');
|
|
14
14
|
|
|
15
15
|
const logger = require('heimdalljs-logger')('ember-cli:tasks:install-blueprint');
|
|
16
|
+
const { isExperimentEnabled } = require('@ember-tooling/blueprint-model/utilities/experiments');
|
|
16
17
|
|
|
17
18
|
const NOT_FOUND_REGEXP = /npm ERR! 404 {2}'(\S+)' is not in the npm registry/;
|
|
18
19
|
|
|
@@ -61,6 +62,10 @@ class InstallBlueprintTask extends Task {
|
|
|
61
62
|
name = name || 'app';
|
|
62
63
|
logger.info(`Resolving blueprint "${name}" ...`);
|
|
63
64
|
|
|
65
|
+
if (isExperimentEnabled('VITE') && name === 'app') {
|
|
66
|
+
return Blueprint.load(path.dirname(require.resolve('@ember/app-blueprint')));
|
|
67
|
+
}
|
|
68
|
+
|
|
64
69
|
let blueprint;
|
|
65
70
|
try {
|
|
66
71
|
blueprint = await this._lookupLocalBlueprint(name);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ember-cli",
|
|
3
|
-
"version": "6.8.0-beta.
|
|
3
|
+
"version": "6.8.0-beta.3",
|
|
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-model": "0.3.0",
|
|
122
|
-
"@ember-tooling/classic-build-addon-blueprint": "6.8.0-beta.1",
|
|
123
121
|
"@ember-tooling/blueprint-blueprint": "0.1.0",
|
|
124
|
-
"@ember-tooling/classic-build-app-blueprint": "6.8.0-beta.1"
|
|
122
|
+
"@ember-tooling/classic-build-app-blueprint": "6.8.0-beta.1",
|
|
123
|
+
"@ember-tooling/blueprint-model": "0.3.0",
|
|
124
|
+
"@ember-tooling/classic-build-addon-blueprint": "6.8.0-beta.1"
|
|
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.1",
|
|
62
62
|
"ember-auto-import": "^2.10.0",
|
|
63
|
-
"ember-cli": "~6.8.0-beta.
|
|
63
|
+
"ember-cli": "~6.8.0-beta.3",
|
|
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",
|