@warp-drive-mirror/build-config 5.7.0-alpha.27 → 5.7.0-alpha.29
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/canary-features.d.ts +1 -1
- package/declarations/debugging.d.ts +1 -1
- package/declarations/deprecations.d.ts +1 -1
- package/declarations/env.d.ts +6 -6
- package/declarations/macros.d.ts +1 -1
- package/dist/babel-macros.js +3 -3
- package/dist/{canary-features-9eYOaqB0.js → canary-features-BM0to_ys.js} +1 -1
- package/dist/canary-features.js +1 -1
- package/dist/cjs-set-config.cjs +2 -2
- package/dist/{debugging-y2kuCwNK.js → debugging-DgRWKeE4.js} +1 -1
- package/dist/debugging.js +1 -1
- package/dist/{deprecations-Dub3LfHZ.js → deprecations-DitCVLCo.js} +1 -1
- package/dist/deprecations.js +1 -1
- package/dist/env.js +6 -6
- package/dist/index.js +2 -2
- package/dist/macros.js +1 -1
- package/package.json +2 -2
package/declarations/env.d.ts
CHANGED
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
* }
|
|
33
33
|
* ```
|
|
34
34
|
*
|
|
35
|
-
* @
|
|
35
|
+
* @private
|
|
36
36
|
*/
|
|
37
37
|
export declare const DEBUG: boolean;
|
|
38
38
|
/**
|
|
@@ -63,7 +63,7 @@ export declare const DEBUG: boolean;
|
|
|
63
63
|
* }
|
|
64
64
|
* ```
|
|
65
65
|
*
|
|
66
|
-
* @
|
|
66
|
+
* @private
|
|
67
67
|
*/
|
|
68
68
|
export declare const PRODUCTION: boolean;
|
|
69
69
|
/**
|
|
@@ -101,13 +101,13 @@ export declare const PRODUCTION: boolean;
|
|
|
101
101
|
* }
|
|
102
102
|
* ```
|
|
103
103
|
*
|
|
104
|
-
* @
|
|
104
|
+
* @private
|
|
105
105
|
*/
|
|
106
106
|
export declare const TESTING: boolean;
|
|
107
107
|
/**
|
|
108
108
|
* Indicates whether Holodeck is in a forced global recording mode.
|
|
109
109
|
*
|
|
110
|
-
* @
|
|
110
|
+
* @private
|
|
111
111
|
*/
|
|
112
112
|
export declare const IS_RECORDING: boolean;
|
|
113
113
|
/**
|
|
@@ -115,7 +115,7 @@ export declare const IS_RECORDING: boolean;
|
|
|
115
115
|
*
|
|
116
116
|
* This is determined by the presence of the `CI` environment variable.
|
|
117
117
|
*
|
|
118
|
-
* @
|
|
118
|
+
* @private
|
|
119
119
|
*/
|
|
120
120
|
export declare const IS_CI: boolean;
|
|
121
121
|
/**
|
|
@@ -124,6 +124,6 @@ export declare const IS_CI: boolean;
|
|
|
124
124
|
* This is always true in a non-CI environment, and is true if
|
|
125
125
|
* `IS_RECORDING` is true.
|
|
126
126
|
*
|
|
127
|
-
* @
|
|
127
|
+
* @private
|
|
128
128
|
*/
|
|
129
129
|
export declare const SHOULD_RECORD: boolean;
|
package/declarations/macros.d.ts
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
* Asserts are removed from production builds, making this a "zero cost abstraction"
|
|
13
13
|
* so liberal usage of this function to ensure runtime correctness is encouraged.
|
|
14
14
|
*
|
|
15
|
-
* @
|
|
15
|
+
* @private
|
|
16
16
|
*/
|
|
17
17
|
export declare function assert(message: string, condition: unknown): asserts condition;
|
|
18
18
|
export declare function assert(message: string): never;
|
package/dist/babel-macros.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { L as LOGGING } from './debugging-
|
|
2
|
-
import { C as CURRENT_FEATURES } from './canary-features-
|
|
3
|
-
import { C as CURRENT_DEPRECATIONS } from './deprecations-
|
|
1
|
+
import { L as LOGGING } from './debugging-DgRWKeE4.js';
|
|
2
|
+
import { C as CURRENT_FEATURES } from './canary-features-BM0to_ys.js';
|
|
3
|
+
import { C as CURRENT_DEPRECATIONS } from './deprecations-DitCVLCo.js';
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
6
|
* Babel plugins that convert constants and expressions into [macroConditions](https://www.npmjs.com/package/@embroider/macros#the-macros)
|
package/dist/canary-features.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { E as ENFORCE_STRICT_RESOURCE_FINALIZATION, J as JSON_API_CACHE_VALIDATION_ERRORS, S as SAMPLE_FEATURE_FLAG } from './canary-features-
|
|
1
|
+
export { E as ENFORCE_STRICT_RESOURCE_FINALIZATION, J as JSON_API_CACHE_VALIDATION_ERRORS, S as SAMPLE_FEATURE_FLAG } from './canary-features-BM0to_ys.js';
|
package/dist/cjs-set-config.cjs
CHANGED
|
@@ -249,7 +249,7 @@ function getDeprecations(compatVersion, deprecations) {
|
|
|
249
249
|
/**
|
|
250
250
|
* We use this for some tests etc.
|
|
251
251
|
*
|
|
252
|
-
* @
|
|
252
|
+
* @private
|
|
253
253
|
*/
|
|
254
254
|
const SAMPLE_FEATURE_FLAG = null;
|
|
255
255
|
|
|
@@ -515,7 +515,7 @@ const DEBUG_RELATIONSHIP_NOTIFICATIONS = false;
|
|
|
515
515
|
*
|
|
516
516
|
* LOG_METRIC_COUNTS must also be enabled.
|
|
517
517
|
*
|
|
518
|
-
* @
|
|
518
|
+
* @private
|
|
519
519
|
*/
|
|
520
520
|
const __INTERNAL_LOG_NATIVE_MAP_SET_COUNTS = false;
|
|
521
521
|
|
package/dist/debugging.js
CHANGED
|
@@ -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, m as LOG_REACT_SIGNAL_INTEGRATION, g as LOG_REQUESTS, h as LOG_REQUEST_STATUS, _ as __INTERNAL_LOG_NATIVE_MAP_SET_COUNTS } from './debugging-
|
|
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, m as LOG_REACT_SIGNAL_INTEGRATION, g as LOG_REQUESTS, h as LOG_REQUEST_STATUS, _ as __INTERNAL_LOG_NATIVE_MAP_SET_COUNTS } from './debugging-DgRWKeE4.js';
|
package/dist/deprecations.js
CHANGED
|
@@ -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, l as DISABLE_7X_DEPRECATIONS, k as ENABLE_LEGACY_REQUEST_METHODS, E as ENABLE_LEGACY_SCHEMA_SERVICE } from './deprecations-
|
|
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, l as DISABLE_7X_DEPRECATIONS, k as ENABLE_LEGACY_REQUEST_METHODS, E as ENABLE_LEGACY_SCHEMA_SERVICE } from './deprecations-DitCVLCo.js';
|
package/dist/env.js
CHANGED
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
* }
|
|
34
34
|
* ```
|
|
35
35
|
*
|
|
36
|
-
* @
|
|
36
|
+
* @private
|
|
37
37
|
*/
|
|
38
38
|
const DEBUG = true;
|
|
39
39
|
/**
|
|
@@ -64,7 +64,7 @@ const DEBUG = true;
|
|
|
64
64
|
* }
|
|
65
65
|
* ```
|
|
66
66
|
*
|
|
67
|
-
* @
|
|
67
|
+
* @private
|
|
68
68
|
*/
|
|
69
69
|
const PRODUCTION = true;
|
|
70
70
|
/**
|
|
@@ -102,13 +102,13 @@ const PRODUCTION = true;
|
|
|
102
102
|
* }
|
|
103
103
|
* ```
|
|
104
104
|
*
|
|
105
|
-
* @
|
|
105
|
+
* @private
|
|
106
106
|
*/
|
|
107
107
|
const TESTING = true;
|
|
108
108
|
/**
|
|
109
109
|
* Indicates whether Holodeck is in a forced global recording mode.
|
|
110
110
|
*
|
|
111
|
-
* @
|
|
111
|
+
* @private
|
|
112
112
|
*/
|
|
113
113
|
const IS_RECORDING = true;
|
|
114
114
|
/**
|
|
@@ -116,7 +116,7 @@ const IS_RECORDING = true;
|
|
|
116
116
|
*
|
|
117
117
|
* This is determined by the presence of the `CI` environment variable.
|
|
118
118
|
*
|
|
119
|
-
* @
|
|
119
|
+
* @private
|
|
120
120
|
*/
|
|
121
121
|
const IS_CI = true;
|
|
122
122
|
/**
|
|
@@ -125,7 +125,7 @@ const IS_CI = true;
|
|
|
125
125
|
* This is always true in a non-CI environment, and is true if
|
|
126
126
|
* `IS_RECORDING` is true.
|
|
127
127
|
*
|
|
128
|
-
* @
|
|
128
|
+
* @private
|
|
129
129
|
*/
|
|
130
130
|
const SHOULD_RECORD = true;
|
|
131
131
|
|
package/dist/index.js
CHANGED
|
@@ -3,8 +3,8 @@ import semver from 'semver';
|
|
|
3
3
|
import fs from 'fs';
|
|
4
4
|
import path from 'path';
|
|
5
5
|
import { fileURLToPath } from 'url';
|
|
6
|
-
import { C as CURRENT_FEATURES } from './canary-features-
|
|
7
|
-
import { L as LOGGING } from './debugging-
|
|
6
|
+
import { C as CURRENT_FEATURES } from './canary-features-BM0to_ys.js';
|
|
7
|
+
import { L as LOGGING } from './debugging-DgRWKeE4.js';
|
|
8
8
|
|
|
9
9
|
function getEnv(forceMode) {
|
|
10
10
|
const FORCE_TESTING = forceMode === 'testing' || forceMode === 'development' || forceMode === 'debug';
|
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.7.0-alpha.
|
|
3
|
+
"version": "5.7.0-alpha.29",
|
|
4
4
|
"description": "Provides Build Configuration for projects using WarpDrive or EmberData",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-data-mirror",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"semver": "^7.7.1"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@warp-drive/internal-config": "5.7.0-alpha.
|
|
45
|
+
"@warp-drive/internal-config": "5.7.0-alpha.29",
|
|
46
46
|
"@types/babel__core": "^7.20.5",
|
|
47
47
|
"@types/node": "^20.17.32",
|
|
48
48
|
"@babel/plugin-transform-typescript": "^7.27.0",
|