@ember-data/tracking 5.4.0-alpha.35 → 5.4.0-alpha.41
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/addon-main.cjs +1 -0
- package/package.json +29 -30
package/addon-main.cjs
CHANGED
|
@@ -58,6 +58,7 @@ module.exports = {
|
|
|
58
58
|
|
|
59
59
|
// copy configs forward
|
|
60
60
|
const ownConfig = this.options['@embroider/macros'].setOwnConfig;
|
|
61
|
+
ownConfig.polyfillUUID = hostOptions.polyfillUUID ?? false;
|
|
61
62
|
ownConfig.compatWith = hostOptions.compatWith || null;
|
|
62
63
|
ownConfig.debug = debugOptions;
|
|
63
64
|
ownConfig.deprecations = Object.assign(DEPRECATIONS, ownConfig.deprecations || {}, hostOptions.deprecations || {});
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ember-data/tracking",
|
|
3
3
|
"description": "Tracking Primitives for controlling change notification of Tracked properties when working with EmberData",
|
|
4
|
-
"version": "5.4.0-alpha.
|
|
4
|
+
"version": "5.4.0-alpha.41",
|
|
5
5
|
"private": false,
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "Chris Thoburn <runspired@users.noreply.github.com>",
|
|
@@ -27,11 +27,9 @@
|
|
|
27
27
|
}
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@ember-data/private-build-infra": "5.4.0-alpha.
|
|
31
|
-
"@embroider/macros": "^1.
|
|
32
|
-
"ember-
|
|
33
|
-
"ember-cli-babel": "^8.2.0",
|
|
34
|
-
"pnpm-sync-dependencies-meta-injected": "0.0.10"
|
|
30
|
+
"@ember-data/private-build-infra": "workspace:5.4.0-alpha.41",
|
|
31
|
+
"@embroider/macros": "^1.15.0",
|
|
32
|
+
"ember-cli-babel": "^8.2.0"
|
|
35
33
|
},
|
|
36
34
|
"files": [
|
|
37
35
|
"unstable-preview-types",
|
|
@@ -42,41 +40,42 @@
|
|
|
42
40
|
"ember-data-logo-dark.svg",
|
|
43
41
|
"ember-data-logo-light.svg"
|
|
44
42
|
],
|
|
43
|
+
"scripts": {
|
|
44
|
+
"lint": "eslint . --quiet --cache --cache-strategy=content --ext .js,.ts,.mjs,.cjs --report-unused-disable-directives",
|
|
45
|
+
"build:runtime": "rollup --config && babel ./addon --out-dir addon --plugins=../private-build-infra/src/transforms/babel-plugin-transform-ext.js",
|
|
46
|
+
"build:types": "tsc --build",
|
|
47
|
+
"_build": "bun run build:runtime && bun run build:types",
|
|
48
|
+
"_syncPnpm": "bun run sync-dependencies-meta-injected"
|
|
49
|
+
},
|
|
45
50
|
"ember-addon": {
|
|
46
51
|
"main": "addon-main.cjs",
|
|
47
52
|
"type": "addon",
|
|
48
53
|
"version": 1
|
|
49
54
|
},
|
|
50
55
|
"devDependencies": {
|
|
51
|
-
"@babel/cli": "^7.
|
|
52
|
-
"@babel/core": "^7.
|
|
53
|
-
"@babel/plugin-proposal-decorators": "^7.
|
|
54
|
-
"@babel/plugin-transform-class-properties": "^7.
|
|
55
|
-
"@babel/plugin-transform-private-methods": "^7.
|
|
56
|
-
"@babel/plugin-transform-runtime": "^7.
|
|
57
|
-
"@babel/plugin-transform-typescript": "^7.
|
|
58
|
-
"@babel/preset-env": "^7.
|
|
59
|
-
"@babel/preset-typescript": "^7.
|
|
60
|
-
"@babel/runtime": "^7.
|
|
61
|
-
"@embroider/addon-dev": "^4.1
|
|
56
|
+
"@babel/cli": "^7.24.1",
|
|
57
|
+
"@babel/core": "^7.24.1",
|
|
58
|
+
"@babel/plugin-proposal-decorators": "^7.24.1",
|
|
59
|
+
"@babel/plugin-transform-class-properties": "^7.24.1",
|
|
60
|
+
"@babel/plugin-transform-private-methods": "^7.24.1",
|
|
61
|
+
"@babel/plugin-transform-runtime": "^7.24.1",
|
|
62
|
+
"@babel/plugin-transform-typescript": "^7.24.1",
|
|
63
|
+
"@babel/preset-env": "^7.24.1",
|
|
64
|
+
"@babel/preset-typescript": "^7.24.1",
|
|
65
|
+
"@babel/runtime": "^7.24.1",
|
|
66
|
+
"@embroider/addon-dev": "^4.2.1",
|
|
62
67
|
"@glimmer/component": "^1.1.2",
|
|
63
|
-
"@glimmer/validator": "^0.
|
|
68
|
+
"@glimmer/validator": "^0.89.0",
|
|
64
69
|
"@rollup/plugin-babel": "^6.0.4",
|
|
65
70
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
66
|
-
"@warp-drive/internal-config": "5.4.0-alpha.
|
|
67
|
-
"ember-source": "~5.
|
|
68
|
-
"
|
|
69
|
-
"
|
|
71
|
+
"@warp-drive/internal-config": "workspace:5.4.0-alpha.41",
|
|
72
|
+
"ember-source": "~5.7.0",
|
|
73
|
+
"pnpm-sync-dependencies-meta-injected": "0.0.10",
|
|
74
|
+
"rollup": "^4.13.0",
|
|
75
|
+
"typescript": "^5.4.3",
|
|
70
76
|
"walk-sync": "^3.0.0"
|
|
71
77
|
},
|
|
72
78
|
"ember": {
|
|
73
79
|
"edition": "octane"
|
|
74
|
-
},
|
|
75
|
-
"scripts": {
|
|
76
|
-
"lint": "eslint . --quiet --cache --cache-strategy=content --ext .js,.ts,.mjs,.cjs --report-unused-disable-directives",
|
|
77
|
-
"build:runtime": "rollup --config && babel ./addon --out-dir addon --plugins=../private-build-infra/src/transforms/babel-plugin-transform-ext.js",
|
|
78
|
-
"build:types": "tsc --build",
|
|
79
|
-
"_build": "bun run build:runtime && bun run build:types",
|
|
80
|
-
"_syncPnpm": "bun run sync-dependencies-meta-injected"
|
|
81
80
|
}
|
|
82
|
-
}
|
|
81
|
+
}
|