ember-source 7.1.0-beta.1 → 7.2.0-alpha.2
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/build-metadata.json +3 -3
- package/dist/dev/packages/ember/version.js +1 -1
- package/dist/prod/packages/ember/version.js +1 -1
- package/docs/data.json +1 -1
- package/lib/{index.js → index.cjs} +2 -2
- package/package.json +8 -8
- /package/lib/{browsers.js → browsers.cjs} +0 -0
- /package/lib/{overrides.js → overrides.cjs} +0 -0
package/build-metadata.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "7.
|
|
2
|
+
"version": "7.2.0-alpha.2",
|
|
3
3
|
"buildType": "tag",
|
|
4
|
-
"SHA": "
|
|
5
|
-
"assetPath": "/tag/shas/
|
|
4
|
+
"SHA": "ee67811e15cd30649493d0c1006cc62950072c3b",
|
|
5
|
+
"assetPath": "/tag/shas/ee67811e15cd30649493d0c1006cc62950072c3b.tgz"
|
|
6
6
|
}
|
package/docs/data.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"name": "The Ember API",
|
|
4
4
|
"description": "The Ember API: a framework for building ambitious web applications",
|
|
5
5
|
"url": "https://emberjs.com/",
|
|
6
|
-
"version": "7.
|
|
6
|
+
"version": "7.2.0-alpha.2"
|
|
7
7
|
},
|
|
8
8
|
"files": {
|
|
9
9
|
"node_modules/rsvp/lib/rsvp/promise/all.js": {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
const path = require('path');
|
|
4
|
-
const Overrides = require('./overrides');
|
|
5
|
-
const SupportedBrowsers = require('./browsers');
|
|
4
|
+
const Overrides = require('./overrides.cjs');
|
|
5
|
+
const SupportedBrowsers = require('./browsers.cjs');
|
|
6
6
|
|
|
7
7
|
const isProduction = process.env.EMBER_ENV === 'production';
|
|
8
8
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ember-source",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.2.0-alpha.2",
|
|
4
4
|
"description": "A JavaScript framework for creating ambitious web applications",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon"
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"url": "https://github.com/emberjs/ember.js/issues"
|
|
22
22
|
},
|
|
23
23
|
"license": "MIT",
|
|
24
|
-
"main": "lib/index.
|
|
24
|
+
"main": "lib/index.cjs",
|
|
25
25
|
"files": [
|
|
26
26
|
"build-metadata.json",
|
|
27
27
|
"blueprints",
|
|
@@ -44,17 +44,17 @@
|
|
|
44
44
|
"docs": "ember ember-cli-yuidoc",
|
|
45
45
|
"start": "vite dev",
|
|
46
46
|
"lint": "npm-run-all --continue-on-error --aggregate-output --parallel \"lint:!(fix)\"",
|
|
47
|
-
"lint:docs": "qunit tests/docs/coverage-test.
|
|
47
|
+
"lint:docs": "qunit tests/docs/coverage-test.cjs",
|
|
48
48
|
"lint:eslint": "eslint --report-unused-disable-directives --cache .",
|
|
49
49
|
"lint:eslint:fix": "npm-run-all \"lint:eslint --fix\"",
|
|
50
50
|
"lint:fix": "npm-run-all lint:*:fix",
|
|
51
51
|
"lint:format": "prettier --check .",
|
|
52
52
|
"lint:format:fix": "prettier --write .",
|
|
53
|
-
"test": "testem ci -f testem.
|
|
53
|
+
"test": "testem ci -f testem.cjs --host 127.0.0.1 --port 13141",
|
|
54
54
|
"test:blueprints": "mocha node-tests/blueprints/**/*-test.js",
|
|
55
|
-
"test:node": "qunit tests/node/**/*-test.
|
|
55
|
+
"test:node": "qunit tests/node/**/*-test.cjs",
|
|
56
56
|
"test:node:vitest": "pnpm --filter ember-test-node-vitest test:node",
|
|
57
|
-
"test:browserstack": "node bin/run-browserstack-tests.
|
|
57
|
+
"test:browserstack": "node bin/run-browserstack-tests.cjs",
|
|
58
58
|
"test:wip": "vite build --mode development --minify false && testem ci",
|
|
59
59
|
"type-check:internals": "tsc --noEmit",
|
|
60
60
|
"type-check:handlebars": "tsc --noEmit --project packages/@handlebars/parser/tsconfig.json",
|
|
@@ -363,9 +363,9 @@
|
|
|
363
363
|
}
|
|
364
364
|
},
|
|
365
365
|
"packageManager": "pnpm@10.33.2",
|
|
366
|
-
"_originalVersion": "7.
|
|
366
|
+
"_originalVersion": "7.2.0-alpha.1",
|
|
367
367
|
"_versionPreviouslyCalculated": true,
|
|
368
368
|
"publishConfig": {
|
|
369
|
-
"tag": "
|
|
369
|
+
"tag": "alpha"
|
|
370
370
|
}
|
|
371
371
|
}
|
|
File without changes
|
|
File without changes
|