ember-source 4.9.0-alpha.3 → 4.9.0-alpha.4
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 +4 -0
- package/build-metadata.json +3 -3
- package/dist/ember-template-compiler.js +9 -4
- package/dist/ember-template-compiler.map +1 -1
- package/dist/ember-testing.js +1 -1
- package/dist/ember-testing.map +1 -1
- package/dist/ember.debug.js +28 -1427
- package/dist/ember.debug.map +1 -1
- package/dist/header/license.js +1 -1
- package/dist/packages/@ember/-internals/glimmer/index.js +5 -5
- package/dist/packages/@ember/-internals/meta/lib/meta.js +13 -13
- package/dist/packages/@ember/array/index.js +0 -909
- package/dist/packages/@ember/array/proxy.js +0 -31
- package/dist/packages/@ember/controller/index.js +0 -156
- package/dist/packages/@ember/debug/data-adapter.js +8 -2
- package/dist/packages/@ember/object/observable.js +0 -228
- package/dist/packages/@ember/object/promise-proxy-mixin.js +0 -80
- package/dist/packages/@ember/routing/route.js +1 -1
- package/dist/packages/ember/version.js +1 -1
- package/docs/data.json +262 -383
- package/package.json +10 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ember-source",
|
|
3
|
-
"version": "4.9.0-alpha.
|
|
3
|
+
"version": "4.9.0-alpha.4",
|
|
4
4
|
"description": "A JavaScript framework for creating ambitious web applications",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon"
|
|
@@ -41,16 +41,16 @@
|
|
|
41
41
|
"lint:docs": "qunit tests/docs/coverage-test.js",
|
|
42
42
|
"lint:eslint": "eslint --report-unused-disable-directives --cache .",
|
|
43
43
|
"lint:eslint:fix": "npm-run-all \"lint:eslint --fix\"",
|
|
44
|
-
"lint:tsc:stable": "tsc --noEmit",
|
|
45
|
-
"lint:tsc:preview": "tsc --noEmit --project type-tests/preview",
|
|
46
|
-
"lint:tsc": "npm-run-all lint:tsc:*",
|
|
47
44
|
"lint:fix": "npm-run-all lint:*:fix",
|
|
48
45
|
"test": "node bin/run-tests.js",
|
|
49
46
|
"test:blueprints:js": "mocha node-tests/blueprints/**/*-test.js",
|
|
50
47
|
"test:blueprints:ts": "EMBER_TYPESCRIPT_BLUEPRINTS=true yarn test:blueprints:js",
|
|
51
48
|
"test:blueprints": "yarn test:blueprints:js && yarn test:blueprints:ts",
|
|
52
49
|
"test:node": "qunit tests/node/**/*-test.js",
|
|
53
|
-
"test:browserstack": "node bin/run-browserstack-tests.js"
|
|
50
|
+
"test:browserstack": "node bin/run-browserstack-tests.js",
|
|
51
|
+
"type-check:stable": "tsc --noEmit",
|
|
52
|
+
"type-check:preview": "tsc --noEmit --project type-tests/preview",
|
|
53
|
+
"type-check": "npm-run-all type-check:*"
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
56
|
"@babel/helper-module-imports": "^7.16.7",
|
|
@@ -98,10 +98,11 @@
|
|
|
98
98
|
"@glimmer/validator": "0.84.2",
|
|
99
99
|
"@simple-dom/document": "^1.4.0",
|
|
100
100
|
"@tsconfig/ember": "^1.0.1",
|
|
101
|
+
"@types/node": "^18.7.23",
|
|
101
102
|
"@types/qunit": "^2.19.2",
|
|
102
103
|
"@types/rsvp": "^4.0.4",
|
|
103
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
104
|
-
"@typescript-eslint/parser": "^5.
|
|
104
|
+
"@typescript-eslint/eslint-plugin": "^5.38.0",
|
|
105
|
+
"@typescript-eslint/parser": "^5.38.0",
|
|
105
106
|
"auto-dist-tag": "^2.1.1",
|
|
106
107
|
"aws-sdk": "^2.1166.0",
|
|
107
108
|
"babel-template": "^6.26.0",
|
|
@@ -157,7 +158,7 @@
|
|
|
157
158
|
"simple-dom": "^1.4.0",
|
|
158
159
|
"testem": "^3.8.0",
|
|
159
160
|
"testem-failure-only-reporter": "^1.0.0",
|
|
160
|
-
"typescript": "~4.
|
|
161
|
+
"typescript": "~4.8.3"
|
|
161
162
|
},
|
|
162
163
|
"peerDependencies": {
|
|
163
164
|
"@glimmer/component": "^1.1.2"
|
|
@@ -178,7 +179,7 @@
|
|
|
178
179
|
]
|
|
179
180
|
}
|
|
180
181
|
},
|
|
181
|
-
"_originalVersion": "4.9.0-alpha.
|
|
182
|
+
"_originalVersion": "4.9.0-alpha.4",
|
|
182
183
|
"_versionPreviouslyCalculated": true,
|
|
183
184
|
"publishConfig": {
|
|
184
185
|
"tag": "alpha"
|