ember-cli 4.1.1 → 4.3.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.
- package/.github/workflows/ci.yml +8 -4
- package/CHANGELOG.md +37 -0
- package/README.md +1 -2
- package/blueprints/addon/additional-dev-dependencies.json +1 -1
- package/blueprints/addon/files/.github/workflows/ci.yml +3 -3
- package/blueprints/addon/files/CONTRIBUTING.md +1 -1
- package/blueprints/addon/files/gitignore +2 -0
- package/blueprints/app/files/.ember-cli +7 -1
- package/blueprints/app/files/.github/workflows/ci.yml +2 -2
- package/blueprints/app/files/README.md +2 -2
- package/blueprints/app/files/app/index.html +0 -1
- package/blueprints/app/files/gitignore +3 -0
- package/blueprints/app/files/package.json +12 -12
- package/blueprints/app/files/tests/helpers/index.js +42 -0
- package/blueprints/app/files/tests/index.html +0 -1
- package/docs/build/data.json +217 -97
- package/lib/broccoli/default-packager.js +14 -1
- package/lib/broccoli/ember-app.js +4 -4
- package/lib/commands/destroy.js +7 -0
- package/lib/commands/generate.js +16 -7
- package/lib/debug/assert.js +37 -0
- package/lib/debug/deprecate.js +111 -0
- package/lib/debug/index.js +6 -0
- package/lib/models/blueprint.js +209 -4
- package/lib/models/installation-checker.js +1 -1
- package/lib/models/project.js +47 -4
- package/package.json +22 -21
- package/tests/helpers/fixturify-project.js +1 -0
- package/tests/helpers/package-cache.js +1 -1
- package/blueprints/app/files/tests/helpers/.gitkeep +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ember-cli",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.3.0-beta.1",
|
|
4
4
|
"description": "Command line tool for developing ambitious ember.js apps",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"app",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"ember.js",
|
|
13
13
|
"kit"
|
|
14
14
|
],
|
|
15
|
-
"homepage": "https://
|
|
15
|
+
"homepage": "https://cli.emberjs.com/release/",
|
|
16
16
|
"bugs": {
|
|
17
17
|
"url": "https://github.com/ember-cli/ember-cli/issues"
|
|
18
18
|
},
|
|
@@ -37,8 +37,8 @@
|
|
|
37
37
|
"test:slow": "node --unhandled-rejections=strict tests/runner slow"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@babel/core": "^7.16.
|
|
41
|
-
"@babel/plugin-transform-modules-amd": "^7.
|
|
40
|
+
"@babel/core": "^7.16.7",
|
|
41
|
+
"@babel/plugin-transform-modules-amd": "^7.16.7",
|
|
42
42
|
"amd-name-resolver": "^1.3.1",
|
|
43
43
|
"babel-plugin-module-resolver": "^4.1.0",
|
|
44
44
|
"bower-config": "^1.4.3",
|
|
@@ -53,14 +53,14 @@
|
|
|
53
53
|
"broccoli-debug": "^0.6.5",
|
|
54
54
|
"broccoli-funnel": "^3.0.8",
|
|
55
55
|
"broccoli-funnel-reducer": "^1.0.0",
|
|
56
|
-
"broccoli-merge-trees": "^
|
|
56
|
+
"broccoli-merge-trees": "^4.2.0",
|
|
57
57
|
"broccoli-middleware": "^2.1.1",
|
|
58
58
|
"broccoli-slow-trees": "^3.1.0",
|
|
59
59
|
"broccoli-source": "^3.0.1",
|
|
60
60
|
"broccoli-stew": "^3.0.0",
|
|
61
61
|
"calculate-cache-key-for-tree": "^2.0.0",
|
|
62
62
|
"capture-exit": "^2.0.0",
|
|
63
|
-
"chalk": "^4.1.
|
|
63
|
+
"chalk": "^4.1.2",
|
|
64
64
|
"ci-info": "^3.3.0",
|
|
65
65
|
"clean-base-url": "^1.0.0",
|
|
66
66
|
"compression": "^1.7.4",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"ensure-posix-path": "^1.1.1",
|
|
79
79
|
"execa": "^5.1.1",
|
|
80
80
|
"exit": "^0.1.2",
|
|
81
|
-
"express": "^4.17.
|
|
81
|
+
"express": "^4.17.2",
|
|
82
82
|
"filesize": "^8.0.6",
|
|
83
83
|
"find-up": "^5.0.0",
|
|
84
84
|
"find-yarn-workspace-root": "^2.0.0",
|
|
@@ -98,10 +98,9 @@
|
|
|
98
98
|
"is-language-code": "^3.1.0",
|
|
99
99
|
"isbinaryfile": "^4.0.8",
|
|
100
100
|
"js-yaml": "^3.14.0",
|
|
101
|
-
"json-stable-stringify": "^1.0.1",
|
|
102
101
|
"leek": "0.0.24",
|
|
103
102
|
"lodash.template": "^4.5.0",
|
|
104
|
-
"markdown-it": "^12.0
|
|
103
|
+
"markdown-it": "^12.2.0",
|
|
105
104
|
"markdown-it-terminal": "0.2.1",
|
|
106
105
|
"minimatch": "^3.0.4",
|
|
107
106
|
"morgan": "^1.10.0",
|
|
@@ -110,23 +109,25 @@
|
|
|
110
109
|
"p-defer": "^3.0.0",
|
|
111
110
|
"portfinder": "^1.0.28",
|
|
112
111
|
"promise-map-series": "^0.3.0",
|
|
113
|
-
"promise.hash.helper": "^1.0.
|
|
112
|
+
"promise.hash.helper": "^1.0.8",
|
|
114
113
|
"quick-temp": "^0.1.8",
|
|
114
|
+
"remove-types": "^1.0.0",
|
|
115
115
|
"resolve": "^1.20.0",
|
|
116
116
|
"resolve-package-path": "^3.1.0",
|
|
117
|
+
"safe-stable-stringify": "^2.2.0",
|
|
117
118
|
"sane": "^5.0.1",
|
|
118
|
-
"semver": "^7.3.
|
|
119
|
+
"semver": "^7.3.5",
|
|
119
120
|
"silent-error": "^1.1.1",
|
|
120
|
-
"sort-package-json": "^1.
|
|
121
|
+
"sort-package-json": "^1.51.0",
|
|
121
122
|
"symlink-or-copy": "^1.3.1",
|
|
122
123
|
"temp": "0.9.4",
|
|
123
|
-
"testem": "^3.
|
|
124
|
+
"testem": "^3.6.0",
|
|
124
125
|
"tiny-lr": "^2.0.0",
|
|
125
126
|
"tree-sync": "^2.1.0",
|
|
126
127
|
"uuid": "^8.3.2",
|
|
127
128
|
"walk-sync": "^2.2.0",
|
|
128
129
|
"watch-detector": "^1.0.1",
|
|
129
|
-
"workerpool": "^6.
|
|
130
|
+
"workerpool": "^6.2.0",
|
|
130
131
|
"yam": "^1.0.0"
|
|
131
132
|
},
|
|
132
133
|
"devDependencies": {
|
|
@@ -134,30 +135,30 @@
|
|
|
134
135
|
"@octokit/rest": "^18.12.0",
|
|
135
136
|
"broccoli-plugin": "^4.0.3",
|
|
136
137
|
"broccoli-test-helper": "^2.0.0",
|
|
137
|
-
"chai": "^4.3.
|
|
138
|
+
"chai": "^4.3.6",
|
|
138
139
|
"chai-as-promised": "^7.1.1",
|
|
139
140
|
"chai-files": "^1.4.0",
|
|
140
141
|
"chai-jest-snapshot": "^2.0.0",
|
|
141
142
|
"ember-cli-blueprint-test-helpers": "^0.19.2",
|
|
142
143
|
"ember-cli-internal-test-helpers": "^0.9.1",
|
|
143
|
-
"eslint": "^
|
|
144
|
+
"eslint": "^8.6.0",
|
|
144
145
|
"eslint-config-prettier": "^7.2.0",
|
|
145
146
|
"eslint-plugin-chai-expect": "^3.0.0",
|
|
146
147
|
"eslint-plugin-mocha": "^9.0.0",
|
|
147
148
|
"eslint-plugin-node": "^11.1.0",
|
|
148
|
-
"eslint-plugin-prettier": "^
|
|
149
|
+
"eslint-plugin-prettier": "^4.0.0",
|
|
149
150
|
"fixturify": "^2.1.0",
|
|
150
151
|
"jsdom": "^19.0.0",
|
|
151
152
|
"latest-version": "^5.1.0",
|
|
152
|
-
"mocha": "^
|
|
153
|
-
"nock": "^13.2.
|
|
153
|
+
"mocha": "^9.2.1",
|
|
154
|
+
"nock": "^13.2.2",
|
|
154
155
|
"nyc": "^15.1.0",
|
|
155
156
|
"prettier": "2.5.1",
|
|
156
|
-
"release-it": "^14.
|
|
157
|
+
"release-it": "^14.12.4",
|
|
157
158
|
"rimraf": "^3.0.2",
|
|
158
159
|
"strip-ansi": "^6.0.0",
|
|
159
160
|
"supertest": "^6.1.6",
|
|
160
|
-
"testdouble": "^3.16.
|
|
161
|
+
"testdouble": "^3.16.4",
|
|
161
162
|
"tmp": "^0.2.1",
|
|
162
163
|
"websocket": "^1.0.32",
|
|
163
164
|
"which": "2.0.2",
|
|
@@ -5,7 +5,7 @@ const path = require('path');
|
|
|
5
5
|
const quickTemp = require('quick-temp');
|
|
6
6
|
const Configstore = require('configstore');
|
|
7
7
|
const CommandGenerator = require('./command-generator');
|
|
8
|
-
const stableStringify = require('
|
|
8
|
+
const stableStringify = require('safe-stable-stringify');
|
|
9
9
|
const symlinkOrCopySync = require('symlink-or-copy').sync;
|
|
10
10
|
|
|
11
11
|
let originalWorkingDirectory = process.cwd();
|
|
File without changes
|