@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
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
// ========================
|
|
2
|
+
// FOR CONTRIBUTING AUTHORS
|
|
3
|
+
//
|
|
4
|
+
// Deprecations here should also have guides PR'd to the emberjs deprecation app
|
|
5
|
+
//
|
|
6
|
+
// github: https://github.com/ember-learn/deprecation-app
|
|
7
|
+
// website: https://deprecations.emberjs.com
|
|
8
|
+
//
|
|
9
|
+
// Each deprecation should also be given an associated URL pointing to the
|
|
10
|
+
// relevant guide.
|
|
11
|
+
//
|
|
12
|
+
// URLs should be of the form: https://deprecations.emberjs.com/v<major>.x#toc_<fileName>
|
|
13
|
+
// where <major> is the major version of the deprecation and <fileName> is the
|
|
14
|
+
// name of the markdown file in the guides repo.
|
|
15
|
+
//
|
|
16
|
+
// ========================
|
|
17
|
+
//
|
|
1
18
|
export declare const DEPRECATE_CATCH_ALL = "99.0";
|
|
2
19
|
export declare const DEPRECATE_NON_STRICT_TYPES = "5.3";
|
|
3
20
|
export declare const DEPRECATE_NON_STRICT_ID = "5.3";
|
|
@@ -11,4 +28,3 @@ export declare const ENABLE_LEGACY_SCHEMA_SERVICE = "5.4";
|
|
|
11
28
|
export declare const DEPRECATE_EMBER_INFLECTOR = "5.3";
|
|
12
29
|
export declare const DISABLE_7X_DEPRECATIONS = "7.0";
|
|
13
30
|
export declare const DEPRECATE_TRACKING_PACKAGE = "5.5";
|
|
14
|
-
//# sourceMappingURL=deprecation-versions.d.ts.map
|