ember-cli 4.1.0 → 4.1.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.
- package/CHANGELOG.md +15 -0
- package/bin/ember +0 -0
- package/blueprints/addon/additional-dev-dependencies.json +1 -1
- package/blueprints/addon/files/.github/workflows/ci.yml +0 -1
- package/blueprints/addon/files/.travis.yml +0 -1
- package/blueprints/addon/files/addon-config/ember-try.js +0 -13
- package/blueprints/app/files/config/environment.js +1 -1
- package/blueprints/app/files/package.json +3 -3
- package/blueprints/in-repo-addon/files/__root__/__name__/index.js +0 -0
- package/blueprints/in-repo-addon/index.js +0 -0
- package/blueprints/lib/index.js +0 -0
- package/docs/build/data.json +411 -411
- package/package.json +1 -1
- package/tests/helpers/mock-project.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# ember-cli Changelog
|
|
2
2
|
|
|
3
|
+
## v4.1.1
|
|
4
|
+
|
|
5
|
+
#### Blueprint Changes
|
|
6
|
+
|
|
7
|
+
- [`ember new` diff](https://github.com/ember-cli/ember-new-output/compare/v4.1.0...v4.1.1)
|
|
8
|
+
- [`ember addon` diff](https://github.com/ember-cli/ember-addon-output/compare/v4.1.0...v4.1.1)
|
|
9
|
+
|
|
10
|
+
#### Changelog
|
|
11
|
+
|
|
12
|
+
- [#9737](https://github.com/ember-cli/ember-cli/pull/9737) Remove jQuery integration scenario from ember-try [@NullVoxPopuli](https://github.com/NullVoxPopuli)
|
|
13
|
+
- [#9739](https://github.com/ember-cli/ember-cli/pull/9739) Change blueprint to generate apps using 'history' location [@kategengler](https://github.com/kategengler)
|
|
14
|
+
- [#9762](https://github.com/ember-cli/ember-cli/pull/9762) Update @embroider/* packages to 1.0.0. [@rwjblue](https://github.com/rwjblue)
|
|
15
|
+
|
|
16
|
+
Thank you to all who took the time to contribute!
|
|
17
|
+
|
|
3
18
|
## v4.1.0
|
|
4
19
|
|
|
5
20
|
#### Blueprint Changes
|
package/bin/ember
CHANGED
|
File without changes
|
|
@@ -56,7 +56,6 @@ jobs:
|
|
|
56
56
|
- env: EMBER_TRY_SCENARIO=ember-release
|
|
57
57
|
- env: EMBER_TRY_SCENARIO=ember-beta
|
|
58
58
|
- env: EMBER_TRY_SCENARIO=ember-canary
|
|
59
|
-
- env: EMBER_TRY_SCENARIO=ember-default-with-jquery
|
|
60
59
|
- env: EMBER_TRY_SCENARIO=ember-classic
|
|
61
60
|
- env: EMBER_TRY_SCENARIO=embroider-safe
|
|
62
61
|
- env: EMBER_TRY_SCENARIO=embroider-optimized
|
|
@@ -47,19 +47,6 @@ module.exports = async function () {
|
|
|
47
47
|
},
|
|
48
48
|
},
|
|
49
49
|
},
|
|
50
|
-
{
|
|
51
|
-
name: 'ember-default-with-jquery',
|
|
52
|
-
env: {
|
|
53
|
-
EMBER_OPTIONAL_FEATURES: JSON.stringify({
|
|
54
|
-
'jquery-integration': true,
|
|
55
|
-
}),
|
|
56
|
-
},
|
|
57
|
-
npm: {
|
|
58
|
-
devDependencies: {
|
|
59
|
-
'@ember/jquery': '^1.1.0',
|
|
60
|
-
},
|
|
61
|
-
},
|
|
62
|
-
},
|
|
63
50
|
{
|
|
64
51
|
name: 'ember-classic',
|
|
65
52
|
env: {
|
|
@@ -25,9 +25,9 @@
|
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@ember/optional-features": "^2.0.0",
|
|
27
27
|
"@ember/test-helpers": "^2.6.0<% if (embroider) { %>",
|
|
28
|
-
"@embroider/compat": "^0.
|
|
29
|
-
"@embroider/core": "^0.
|
|
30
|
-
"@embroider/webpack": "^0.
|
|
28
|
+
"@embroider/compat": "^1.0.0",
|
|
29
|
+
"@embroider/core": "^1.0.0",
|
|
30
|
+
"@embroider/webpack": "^1.0.0<% } %>",
|
|
31
31
|
"@glimmer/component": "^1.0.4",
|
|
32
32
|
"@glimmer/tracking": "^1.0.4",
|
|
33
33
|
"babel-eslint": "^10.1.0",
|
|
File without changes
|
|
File without changes
|
package/blueprints/lib/index.js
CHANGED
|
File without changes
|