@warp-drive-mirror/build-config 5.6.0-alpha.15 → 5.6.0-alpha.17
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/declarations/-private/utils/deprecations.d.ts +2 -7
- package/declarations/-private/utils/features.d.ts +2 -5
- package/declarations/-private/utils/get-env.d.ts +7 -8
- package/declarations/-private/utils/logging.d.ts +5 -8
- package/declarations/babel-macros.d.ts +9 -10
- package/declarations/canary-features.d.ts +131 -132
- package/declarations/debugging.d.ts +142 -143
- package/declarations/deprecation-versions.d.ts +17 -1
- package/declarations/deprecations.d.ts +488 -489
- package/declarations/env.d.ts +116 -117
- package/declarations/index.d.ts +94 -95
- package/declarations/macros.d.ts +14 -15
- package/dist/addon-shim.cjs +0 -1
- package/dist/babel-macros.js +0 -1
- package/dist/babel-plugin-transform-asserts.cjs +3 -5
- package/dist/babel-plugin-transform-deprecations.cjs +0 -1
- package/dist/babel-plugin-transform-features.cjs +0 -1
- package/dist/babel-plugin-transform-logging.cjs +0 -1
- package/dist/canary-features-CuKgaVtX.js +0 -1
- package/dist/canary-features.js +0 -1
- package/dist/cjs-set-config.cjs +0 -1
- package/dist/debugging-VdsvkNjX.js +0 -1
- package/dist/debugging.js +0 -1
- package/dist/deprecations-BNNGFAiG.js +0 -1
- package/dist/deprecations.js +0 -1
- package/dist/env.js +0 -1
- package/dist/index.js +0 -1
- package/dist/macros.js +0 -1
- package/package.json +3 -3
- package/declarations/-private/utils/deprecations.d.ts.map +0 -1
- package/declarations/-private/utils/features.d.ts.map +0 -1
- package/declarations/-private/utils/get-env.d.ts.map +0 -1
- package/declarations/-private/utils/logging.d.ts.map +0 -1
- package/declarations/babel-macros.d.ts.map +0 -1
- package/declarations/canary-features.d.ts.map +0 -1
- package/declarations/cjs-set-config.d.ts +0 -2
- package/declarations/cjs-set-config.d.ts.map +0 -1
- package/declarations/debugging.d.ts.map +0 -1
- package/declarations/deprecation-versions.d.ts.map +0 -1
- package/declarations/deprecations.d.ts.map +0 -1
- package/declarations/env.d.ts.map +0 -1
- package/declarations/index.d.ts.map +0 -1
- package/declarations/macros.d.ts.map +0 -1
- package/declarations/validate-exports.type-test.d.ts +0 -2
- package/declarations/validate-exports.type-test.d.ts.map +0 -1
- package/dist/addon-shim.cjs.map +0 -1
- package/dist/babel-macros.js.map +0 -1
- package/dist/babel-plugin-transform-asserts.cjs.map +0 -1
- package/dist/babel-plugin-transform-deprecations.cjs.map +0 -1
- package/dist/babel-plugin-transform-features.cjs.map +0 -1
- package/dist/babel-plugin-transform-logging.cjs.map +0 -1
- package/dist/canary-features-CuKgaVtX.js.map +0 -1
- package/dist/canary-features.js.map +0 -1
- package/dist/cjs-set-config.cjs.map +0 -1
- package/dist/debugging-VdsvkNjX.js.map +0 -1
- package/dist/debugging.js.map +0 -1
- package/dist/deprecations-BNNGFAiG.js.map +0 -1
- package/dist/deprecations.js.map +0 -1
- package/dist/env.js.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/macros.js.map +0 -1
package/declarations/env.d.ts
CHANGED
|
@@ -1,130 +1,129 @@
|
|
|
1
1
|
/**
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
2
|
+
* Internal constants for instrumenting the library's code for different environments.
|
|
3
|
+
*
|
|
4
|
+
* @hidden
|
|
5
|
+
* @module
|
|
6
|
+
*/
|
|
7
7
|
/**
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
8
|
+
* a `boolean` indicating whether the code is running in a **development environment**
|
|
9
|
+
* which is converted into a [macroCondition](https://www.npmjs.com/package/@embroider/macros#the-macros) during the package's build process.
|
|
10
|
+
*
|
|
11
|
+
* code within a branch where `DEBUG === true` will be removed from **production** builds
|
|
12
|
+
* while code within a branch where `DEBUG === false` will be removed from **development** builds
|
|
13
|
+
*
|
|
14
|
+
* ```ts
|
|
15
|
+
* if (DEBUG) {
|
|
16
|
+
* // debug code
|
|
17
|
+
* } else {
|
|
18
|
+
* // production code
|
|
19
|
+
* }
|
|
20
|
+
* ```
|
|
21
|
+
*
|
|
22
|
+
* This constant may be used in ternary expressions but should not be
|
|
23
|
+
* otherwised used as a value.
|
|
24
|
+
*
|
|
25
|
+
* Negating the value is supported.
|
|
26
|
+
*
|
|
27
|
+
* ```ts
|
|
28
|
+
* if (!DEBUG) {
|
|
29
|
+
* // production code
|
|
30
|
+
* } else {
|
|
31
|
+
* // debug code
|
|
32
|
+
* }
|
|
33
|
+
* ```
|
|
34
|
+
*
|
|
35
|
+
* @internal
|
|
36
|
+
*/
|
|
37
37
|
export declare const DEBUG: boolean;
|
|
38
38
|
/**
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
39
|
+
* a `boolean` indicating whether the code is running in a **production environment**
|
|
40
|
+
* which is converted into a [macroCondition](https://www.npmjs.com/package/@embroider/macros#the-macros) during the package's build process.
|
|
41
|
+
*
|
|
42
|
+
* code within a branch where `PRODUCTION === true` will be removed from **development** builds
|
|
43
|
+
* while code within a branch where `PRODUCTION === false` will be removed from **production** builds
|
|
44
|
+
*
|
|
45
|
+
* ```ts
|
|
46
|
+
* if (PRODUCTION) {
|
|
47
|
+
* // production code
|
|
48
|
+
* } else {
|
|
49
|
+
* // debug code
|
|
50
|
+
* }
|
|
51
|
+
* ```
|
|
52
|
+
*
|
|
53
|
+
* This constant may be used in ternary expressions but should not be
|
|
54
|
+
* otherwised used as a value.
|
|
55
|
+
*
|
|
56
|
+
* Negating the value is supported.
|
|
57
|
+
*
|
|
58
|
+
* ```ts
|
|
59
|
+
* if (!PRODUCTION) {
|
|
60
|
+
* // debug code
|
|
61
|
+
* } else {
|
|
62
|
+
* // production code
|
|
63
|
+
* }
|
|
64
|
+
* ```
|
|
65
|
+
*
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
68
68
|
export declare const PRODUCTION: boolean;
|
|
69
69
|
/**
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
70
|
+
* a `boolean` indicating whether the code is running in a **testing environment**
|
|
71
|
+
* which is converted into a [macroCondition](https://www.npmjs.com/package/@embroider/macros#the-macros) during the package's build process.
|
|
72
|
+
*
|
|
73
|
+
* TESTING can be true for both development and production builds, it is always true
|
|
74
|
+
* in a development build, and also true when any of the following ENV variables are set:
|
|
75
|
+
*
|
|
76
|
+
* - `EMBER_ENV === 'test'`
|
|
77
|
+
* - `IS_TESTING`
|
|
78
|
+
* - `EMBER_CLI_TEST_COMMAND`
|
|
79
|
+
*
|
|
80
|
+
* ```ts
|
|
81
|
+
* if (TESTING) {
|
|
82
|
+
* // test env code
|
|
83
|
+
* } else {
|
|
84
|
+
* // non-test env code
|
|
85
|
+
* }
|
|
86
|
+
* ```
|
|
87
|
+
*
|
|
88
|
+
* Like DEBUG and PRODUCTION, this constant is converted into a macro during the package's
|
|
89
|
+
* build process, and code within the `false` branch will be removed from the build output.
|
|
90
|
+
*
|
|
91
|
+
* This constant may be used in ternary expressions but should not be
|
|
92
|
+
* otherwised used as a value.
|
|
93
|
+
*
|
|
94
|
+
* Negating the value is supported.
|
|
95
|
+
*
|
|
96
|
+
* ```ts
|
|
97
|
+
* if (!TESTING) {
|
|
98
|
+
* // production code
|
|
99
|
+
* } else {
|
|
100
|
+
* // testing code
|
|
101
|
+
* }
|
|
102
|
+
* ```
|
|
103
|
+
*
|
|
104
|
+
* @internal
|
|
105
|
+
*/
|
|
106
106
|
export declare const TESTING: boolean;
|
|
107
107
|
/**
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
108
|
+
* Indicates whether Holodeck is in a forced global recording mode.
|
|
109
|
+
*
|
|
110
|
+
* @internal
|
|
111
|
+
*/
|
|
112
112
|
export declare const IS_RECORDING: boolean;
|
|
113
113
|
/**
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
114
|
+
* Indicates whether the code is running in a CI environment.
|
|
115
|
+
*
|
|
116
|
+
* This is determined by the presence of the `CI` environment variable.
|
|
117
|
+
*
|
|
118
|
+
* @internal
|
|
119
|
+
*/
|
|
120
120
|
export declare const IS_CI: boolean;
|
|
121
121
|
/**
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
122
|
+
* Indicates whether holodeck should record the current test run.
|
|
123
|
+
*
|
|
124
|
+
* This is always true in a non-CI environment, and is true if
|
|
125
|
+
* `IS_RECORDING` is true.
|
|
126
|
+
*
|
|
127
|
+
* @internal
|
|
128
|
+
*/
|
|
129
129
|
export declare const SHOULD_RECORD: boolean;
|
|
130
|
-
//# sourceMappingURL=env.d.ts.map
|
package/declarations/index.d.ts
CHANGED
|
@@ -1,102 +1,101 @@
|
|
|
1
|
-
import { getDeprecations } from
|
|
2
|
-
import { getFeatures } from
|
|
3
|
-
import * as LOGGING from
|
|
1
|
+
import { getDeprecations } from "./-private/utils/deprecations.js";
|
|
2
|
+
import { getFeatures } from "./-private/utils/features.js";
|
|
3
|
+
import * as LOGGING from "./debugging.js";
|
|
4
4
|
export type WarpDriveConfig = {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
5
|
+
/**
|
|
6
|
+
* An object of key/value pairs of logging flags
|
|
7
|
+
*
|
|
8
|
+
* see {@link LOGGING | debugging} for the available flags.
|
|
9
|
+
*
|
|
10
|
+
* ```ts
|
|
11
|
+
* {
|
|
12
|
+
* LOG_CACHE: true,
|
|
13
|
+
* }
|
|
14
|
+
* ```
|
|
15
|
+
*
|
|
16
|
+
* @public
|
|
17
|
+
*/
|
|
18
|
+
debug?: Partial<InternalWarpDriveConfig["debug"]>;
|
|
19
|
+
/**
|
|
20
|
+
* If you are using the library in an environment that does not
|
|
21
|
+
* support `window.crypto.randomUUID` you can enable a polyfill
|
|
22
|
+
* for it.
|
|
23
|
+
*
|
|
24
|
+
* @public
|
|
25
|
+
*/
|
|
26
|
+
polyfillUUID?: boolean;
|
|
27
|
+
/**
|
|
28
|
+
* By default, the integration required to support the ember-inspector
|
|
29
|
+
* browser extension is included in production builds only when using
|
|
30
|
+
* the `ember-data` package.
|
|
31
|
+
*
|
|
32
|
+
* Otherwise the default is to exclude it. This setting allows to explicitly
|
|
33
|
+
* enable/disable it in production builds.
|
|
34
|
+
*
|
|
35
|
+
* @public
|
|
36
|
+
*/
|
|
37
|
+
includeDataAdapterInProduction?: boolean;
|
|
38
|
+
/**
|
|
39
|
+
* The most recent version of the library from which all
|
|
40
|
+
* deprecations have been resolved.
|
|
41
|
+
*
|
|
42
|
+
* For instance if all deprecations released prior to or
|
|
43
|
+
* within `5.3` have been resolved, then setting this to
|
|
44
|
+
* `5.3` will remove all the support for the deprecated
|
|
45
|
+
* features for associated deprecations.
|
|
46
|
+
*
|
|
47
|
+
* See {@link DEPRECATIONS | deprecations} for more details.
|
|
48
|
+
*/
|
|
49
|
+
compatWith?: `${number}.${number}`;
|
|
50
|
+
/**
|
|
51
|
+
* An object of key/value pairs of logging flags
|
|
52
|
+
*
|
|
53
|
+
* see {@link DEPRECATIONS | deprecations} for the available flags.
|
|
54
|
+
*
|
|
55
|
+
* ```ts
|
|
56
|
+
* {
|
|
57
|
+
* DEPRECATE_THING: false,
|
|
58
|
+
* }
|
|
59
|
+
* ```
|
|
60
|
+
*
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
63
|
+
deprecations?: Partial<InternalWarpDriveConfig["deprecations"]>;
|
|
64
|
+
/**
|
|
65
|
+
* An object of key/value pairs of canary feature flags
|
|
66
|
+
* for use when testing new features gated behind a flag
|
|
67
|
+
* in a canary release version.
|
|
68
|
+
*
|
|
69
|
+
* see {@link FEATURES | features} for the available flags.
|
|
70
|
+
*
|
|
71
|
+
* ```ts
|
|
72
|
+
* {
|
|
73
|
+
* FEATURE_A: true,
|
|
74
|
+
* }
|
|
75
|
+
* ```
|
|
76
|
+
*
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
79
|
+
features?: Partial<InternalWarpDriveConfig["features"]>;
|
|
80
|
+
/**
|
|
81
|
+
* @private
|
|
82
|
+
*/
|
|
83
|
+
forceMode?: "testing" | "production" | "development";
|
|
84
84
|
};
|
|
85
85
|
type InternalWarpDriveConfig = {
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
86
|
+
debug: typeof LOGGING;
|
|
87
|
+
polyfillUUID: boolean;
|
|
88
|
+
includeDataAdapter: boolean;
|
|
89
|
+
compatWith: `${number}.${number}` | null;
|
|
90
|
+
deprecations: ReturnType<typeof getDeprecations>;
|
|
91
|
+
features: ReturnType<typeof getFeatures>;
|
|
92
|
+
activeLogging: typeof LOGGING;
|
|
93
|
+
env: {
|
|
94
|
+
TESTING: boolean;
|
|
95
|
+
PRODUCTION: boolean;
|
|
96
|
+
DEBUG: boolean;
|
|
97
|
+
};
|
|
98
98
|
};
|
|
99
99
|
export declare function setConfig(macros: object, config: WarpDriveConfig): void;
|
|
100
100
|
export declare function setConfig(context: object, appRoot: string, config: WarpDriveConfig): void;
|
|
101
101
|
export {};
|
|
102
|
-
//# sourceMappingURL=index.d.ts.map
|
package/declarations/macros.d.ts
CHANGED
|
@@ -1,19 +1,18 @@
|
|
|
1
1
|
/**
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
2
|
+
* Internal functions for instrumenting the library's code with behaviors
|
|
3
|
+
* that are removed from production builds.
|
|
4
|
+
*
|
|
5
|
+
* @hidden
|
|
6
|
+
* @module
|
|
7
|
+
*/
|
|
8
8
|
/**
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
9
|
+
* A type-narrowing assertion function that throws an error with the supplied
|
|
10
|
+
* message if the condition is falsy.
|
|
11
|
+
*
|
|
12
|
+
* Asserts are removed from production builds, making this a "zero cost abstraction"
|
|
13
|
+
* so liberal usage of this function to ensure runtime correctness is encouraged.
|
|
14
|
+
*
|
|
15
|
+
* @internal
|
|
16
|
+
*/
|
|
17
17
|
export declare function assert(message: string, condition: unknown): asserts condition;
|
|
18
18
|
export declare function assert(message: string): never;
|
|
19
|
-
//# sourceMappingURL=macros.d.ts.map
|
package/dist/addon-shim.cjs
CHANGED
package/dist/babel-macros.js
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
const
|
|
4
|
-
|
|
5
|
-
} = require('babel-import-util');
|
|
3
|
+
const babelImportUtil = require('babel-import-util');
|
|
4
|
+
|
|
6
5
|
const Utils = new Set(['assert']);
|
|
7
6
|
|
|
8
7
|
/*
|
|
@@ -89,11 +88,10 @@ function babelPluginTransformAsserts (babel) {
|
|
|
89
88
|
}
|
|
90
89
|
},
|
|
91
90
|
Program(path, state) {
|
|
92
|
-
state.importer = new ImportUtil(t, path);
|
|
91
|
+
state.importer = new babelImportUtil.ImportUtil(t, path);
|
|
93
92
|
}
|
|
94
93
|
}
|
|
95
94
|
};
|
|
96
95
|
}
|
|
97
96
|
|
|
98
97
|
module.exports = babelPluginTransformAsserts;
|
|
99
|
-
//# sourceMappingURL=babel-plugin-transform-asserts.cjs.map
|
|
@@ -144,4 +144,3 @@ const CURRENT_FEATURES = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.definePr
|
|
|
144
144
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
145
145
|
|
|
146
146
|
export { CURRENT_FEATURES as C, JSON_API_CACHE_VALIDATION_ERRORS as J, SAMPLE_FEATURE_FLAG as S };
|
|
147
|
-
//# sourceMappingURL=canary-features-CuKgaVtX.js.map
|
package/dist/canary-features.js
CHANGED
package/dist/cjs-set-config.cjs
CHANGED
|
@@ -196,4 +196,3 @@ const LOGGING = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
|
196
196
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
197
197
|
|
|
198
198
|
export { DEBUG_RELATIONSHIP_NOTIFICATIONS as D, LOGGING as L, __INTERNAL_LOG_NATIVE_MAP_SET_COUNTS as _, LOG_CACHE as a, LOG_PAYLOADS as b, LOG_OPERATIONS as c, LOG_MUTATIONS as d, LOG_CACHE_POLICY as e, LOG_NOTIFICATIONS as f, LOG_REQUESTS as g, LOG_REQUEST_STATUS as h, LOG_IDENTIFIERS as i, LOG_GRAPH as j, LOG_INSTANCE_CACHE as k, LOG_METRIC_COUNTS as l };
|
|
199
|
-
//# sourceMappingURL=debugging-VdsvkNjX.js.map
|
package/dist/debugging.js
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
1
|
export { D as DEBUG_RELATIONSHIP_NOTIFICATIONS, a as LOG_CACHE, e as LOG_CACHE_POLICY, j as LOG_GRAPH, i as LOG_IDENTIFIERS, k as LOG_INSTANCE_CACHE, l as LOG_METRIC_COUNTS, d as LOG_MUTATIONS, f as LOG_NOTIFICATIONS, c as LOG_OPERATIONS, b as LOG_PAYLOADS, g as LOG_REQUESTS, h as LOG_REQUEST_STATUS, _ as __INTERNAL_LOG_NATIVE_MAP_SET_COUNTS } from './debugging-VdsvkNjX.js';
|
|
2
|
-
//# sourceMappingURL=debugging.js.map
|
|
@@ -546,4 +546,3 @@ const CURRENT_DEPRECATIONS = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defi
|
|
|
546
546
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
547
547
|
|
|
548
548
|
export { CURRENT_DEPRECATIONS as C, DEPRECATE_CATCH_ALL as D, ENABLE_LEGACY_SCHEMA_SERVICE as E, DEPRECATE_COMPUTED_CHAINS as a, DEPRECATE_NON_STRICT_TYPES as b, DEPRECATE_NON_STRICT_ID as c, DEPRECATE_LEGACY_IMPORTS as d, DEPRECATE_NON_UNIQUE_PAYLOADS as e, DEPRECATE_RELATIONSHIP_REMOTE_UPDATE_CLEARING_LOCAL_STATE as f, DEPRECATE_MANY_ARRAY_DUPLICATES as g, DEPRECATE_STORE_EXTENDS_EMBER_OBJECT as h, DEPRECATE_EMBER_INFLECTOR as i, DEPRECATE_TRACKING_PACKAGE as j, DISABLE_7X_DEPRECATIONS as k };
|
|
549
|
-
//# sourceMappingURL=deprecations-BNNGFAiG.js.map
|
package/dist/deprecations.js
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
1
|
export { D as DEPRECATE_CATCH_ALL, a as DEPRECATE_COMPUTED_CHAINS, i as DEPRECATE_EMBER_INFLECTOR, d as DEPRECATE_LEGACY_IMPORTS, g as DEPRECATE_MANY_ARRAY_DUPLICATES, c as DEPRECATE_NON_STRICT_ID, b as DEPRECATE_NON_STRICT_TYPES, e as DEPRECATE_NON_UNIQUE_PAYLOADS, f as DEPRECATE_RELATIONSHIP_REMOTE_UPDATE_CLEARING_LOCAL_STATE, h as DEPRECATE_STORE_EXTENDS_EMBER_OBJECT, j as DEPRECATE_TRACKING_PACKAGE, k as DISABLE_7X_DEPRECATIONS, E as ENABLE_LEGACY_SCHEMA_SERVICE } from './deprecations-BNNGFAiG.js';
|
|
2
|
-
//# sourceMappingURL=deprecations.js.map
|
package/dist/env.js
CHANGED
package/dist/index.js
CHANGED
package/dist/macros.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@warp-drive-mirror/build-config",
|
|
3
|
-
"version": "5.6.0-alpha.
|
|
3
|
+
"version": "5.6.0-alpha.17",
|
|
4
4
|
"description": "Provides Build Configuration for projects using WarpDrive or EmberData",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-data-mirror",
|
|
@@ -42,14 +42,14 @@
|
|
|
42
42
|
"semver": "^7.7.1"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@warp-drive/internal-config": "5.6.0-alpha.
|
|
45
|
+
"@warp-drive/internal-config": "5.6.0-alpha.17",
|
|
46
46
|
"@types/babel__core": "^7.20.5",
|
|
47
47
|
"@types/node": "^20.17.32",
|
|
48
48
|
"@babel/plugin-transform-typescript": "^7.27.0",
|
|
49
49
|
"@babel/preset-typescript": "^7.27.0",
|
|
50
50
|
"@babel/core": "^7.26.10",
|
|
51
51
|
"typescript": "^5.8.3",
|
|
52
|
-
"vite": "^
|
|
52
|
+
"vite": "^7.0.0"
|
|
53
53
|
},
|
|
54
54
|
"volta": {
|
|
55
55
|
"extends": "../../../../../../package.json"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"deprecations.d.ts","sourceRoot":"","sources":["../../../src/-private/utils/deprecations.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,oBAAoB,MAAM,+BAA+B,CAAC;AACtE,KAAK,UAAU,GAAG,GAAG,MAAM,IAAI,MAAM,EAAE,CAAC;AACxC,KAAK,eAAe,GAAG,MAAM,OAAO,oBAAoB,CAAC;AAYzD,wBAAgB,eAAe,CAC7B,aAAa,EAAE,UAAU,GAAG,IAAI,GAAG,SAAS,EAC5C,YAAY,CAAC,EAAE;KAAG,GAAG,IAAI,eAAe,CAAC,CAAC,EAAE,OAAO;CAAE,GACpD;KAAG,GAAG,IAAI,eAAe,GAAG,OAAO;CAAE,CAmCvC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"features.d.ts","sourceRoot":"","sources":["../../../src/-private/utils/features.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,gBAAgB,MAAM,0BAA0B,CAAC;AAC7D,KAAK,OAAO,GAAG,MAAM,OAAO,gBAAgB,CAAC;AAQ7C,wBAAgB,WAAW,CAAC,MAAM,EAAE,OAAO,GAAG;KAAG,GAAG,IAAI,OAAO,GAAG,OAAO;CAAE,CA0D1E"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"get-env.d.ts","sourceRoot":"","sources":["../../../src/-private/utils/get-env.ts"],"names":[],"mappings":"AAAA,wBAAgB,MAAM,CAAC,SAAS,CAAC,EAAE,SAAS,GAAG,YAAY,GAAG,aAAa,GAAG,OAAO,GAAG;IACtF,OAAO,EAAE,OAAO,CAAC;IACjB,UAAU,EAAE,OAAO,CAAC;IACpB,KAAK,EAAE,OAAO,CAAC;IACf,YAAY,EAAE,OAAO,CAAC;IACtB,KAAK,EAAE,OAAO,CAAC;IACf,aAAa,EAAE,OAAO,CAAC;CACxB,CAmBA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"logging.d.ts","sourceRoot":"","sources":["../../../src/-private/utils/logging.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,OAAO,MAAM,oBAAoB,CAAC;AAE9C,KAAK,cAAc,GAAG,MAAM,OAAO,OAAO,CAAC;AAC3C,MAAM,MAAM,UAAU,GAAG;KAAG,GAAG,IAAI,cAAc,GAAG,OAAO;CAAE,CAAC;AAE9D,wBAAgB,mBAAmB,CACjC,GAAG,EAAE;IAAE,KAAK,EAAE,OAAO,CAAC;IAAC,OAAO,EAAE,OAAO,CAAC;IAAC,UAAU,EAAE,OAAO,CAAA;CAAE,EAC9D,KAAK,EAAE,UAAU,GAChB,UAAU,CAaZ"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"babel-macros.d.ts","sourceRoot":"","sources":["../src/babel-macros.ts"],"names":[],"mappings":"AAyCA,KAAK,WAAW,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,CAAC;AAE7D;;;;;;;;;GASG;AACH,wBAAgB,MAAM,IAAI,WAAW,EAAE,CA2DtC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"canary-features.d.ts","sourceRoot":"","sources":["../src/canary-features.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqHG;AAEH;;;;GAIG;AACH,eAAO,MAAM,mBAAmB,EAAE,OAAO,GAAG,IAAW,CAAC;AAExD;;;;;;;;;;GAUG;AACH,eAAO,MAAM,gCAAgC,EAAE,OAAO,GAAG,IAAY,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"cjs-set-config.d.ts","sourceRoot":"","sources":["../src/cjs-set-config.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC"}
|