@carbon/upgrade 11.29.0-rc.0 → 11.30.0
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/cli.js +9 -7
- package/package.json +2 -2
package/cli.js
CHANGED
|
@@ -45958,7 +45958,7 @@ var require_react_is_production = __commonJS({
|
|
|
45958
45958
|
var REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list");
|
|
45959
45959
|
var REACT_MEMO_TYPE = Symbol.for("react.memo");
|
|
45960
45960
|
var REACT_LAZY_TYPE = Symbol.for("react.lazy");
|
|
45961
|
-
var
|
|
45961
|
+
var REACT_VIEW_TRANSITION_TYPE = Symbol.for("react.view_transition");
|
|
45962
45962
|
var REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference");
|
|
45963
45963
|
function typeOf(object) {
|
|
45964
45964
|
if ("object" === typeof object && null !== object) {
|
|
@@ -45971,6 +45971,7 @@ var require_react_is_production = __commonJS({
|
|
|
45971
45971
|
case REACT_STRICT_MODE_TYPE:
|
|
45972
45972
|
case REACT_SUSPENSE_TYPE:
|
|
45973
45973
|
case REACT_SUSPENSE_LIST_TYPE:
|
|
45974
|
+
case REACT_VIEW_TRANSITION_TYPE:
|
|
45974
45975
|
return object;
|
|
45975
45976
|
default:
|
|
45976
45977
|
switch (object = object && object.$$typeof, object) {
|
|
@@ -46039,7 +46040,7 @@ var require_react_is_production = __commonJS({
|
|
|
46039
46040
|
return typeOf(object) === REACT_SUSPENSE_LIST_TYPE;
|
|
46040
46041
|
};
|
|
46041
46042
|
exports2.isValidElementType = function(type) {
|
|
46042
|
-
return "string" === typeof type || "function" === typeof type || type === REACT_FRAGMENT_TYPE || type === REACT_PROFILER_TYPE || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE ||
|
|
46043
|
+
return "string" === typeof type || "function" === typeof type || type === REACT_FRAGMENT_TYPE || type === REACT_PROFILER_TYPE || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || "object" === typeof type && null !== type && (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_CONSUMER_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || type.$$typeof === REACT_CLIENT_REFERENCE || void 0 !== type.getModuleId) ? true : false;
|
|
46043
46044
|
};
|
|
46044
46045
|
exports2.typeOf = typeOf;
|
|
46045
46046
|
}
|
|
@@ -46061,6 +46062,7 @@ var require_react_is_development = __commonJS({
|
|
|
46061
46062
|
case REACT_STRICT_MODE_TYPE:
|
|
46062
46063
|
case REACT_SUSPENSE_TYPE:
|
|
46063
46064
|
case REACT_SUSPENSE_LIST_TYPE:
|
|
46065
|
+
case REACT_VIEW_TRANSITION_TYPE:
|
|
46064
46066
|
return object;
|
|
46065
46067
|
default:
|
|
46066
46068
|
switch (object = object && object.$$typeof, object) {
|
|
@@ -46082,7 +46084,7 @@ var require_react_is_development = __commonJS({
|
|
|
46082
46084
|
}
|
|
46083
46085
|
var REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"), REACT_PORTAL_TYPE = Symbol.for("react.portal"), REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"), REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"), REACT_PROFILER_TYPE = Symbol.for("react.profiler");
|
|
46084
46086
|
Symbol.for("react.provider");
|
|
46085
|
-
var REACT_CONSUMER_TYPE = Symbol.for("react.consumer"), REACT_CONTEXT_TYPE = Symbol.for("react.context"), REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"), REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"), REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list"), REACT_MEMO_TYPE = Symbol.for("react.memo"), REACT_LAZY_TYPE = Symbol.for("react.lazy"),
|
|
46087
|
+
var REACT_CONSUMER_TYPE = Symbol.for("react.consumer"), REACT_CONTEXT_TYPE = Symbol.for("react.context"), REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"), REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"), REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list"), REACT_MEMO_TYPE = Symbol.for("react.memo"), REACT_LAZY_TYPE = Symbol.for("react.lazy"), REACT_VIEW_TRANSITION_TYPE = Symbol.for("react.view_transition"), REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference");
|
|
46086
46088
|
exports2.ContextConsumer = REACT_CONSUMER_TYPE;
|
|
46087
46089
|
exports2.ContextProvider = REACT_CONTEXT_TYPE;
|
|
46088
46090
|
exports2.Element = REACT_ELEMENT_TYPE;
|
|
@@ -46132,7 +46134,7 @@ var require_react_is_development = __commonJS({
|
|
|
46132
46134
|
return typeOf(object) === REACT_SUSPENSE_LIST_TYPE;
|
|
46133
46135
|
};
|
|
46134
46136
|
exports2.isValidElementType = function(type) {
|
|
46135
|
-
return "string" === typeof type || "function" === typeof type || type === REACT_FRAGMENT_TYPE || type === REACT_PROFILER_TYPE || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE ||
|
|
46137
|
+
return "string" === typeof type || "function" === typeof type || type === REACT_FRAGMENT_TYPE || type === REACT_PROFILER_TYPE || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || "object" === typeof type && null !== type && (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_CONSUMER_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || type.$$typeof === REACT_CLIENT_REFERENCE || void 0 !== type.getModuleId) ? true : false;
|
|
46136
46138
|
};
|
|
46137
46139
|
exports2.typeOf = typeOf;
|
|
46138
46140
|
}();
|
|
@@ -47103,9 +47105,9 @@ var require_constants5 = __commonJS({
|
|
|
47103
47105
|
}
|
|
47104
47106
|
});
|
|
47105
47107
|
|
|
47106
|
-
// ../../node_modules/
|
|
47108
|
+
// ../../node_modules/diff-sequences/build/index.js
|
|
47107
47109
|
var require_build3 = __commonJS({
|
|
47108
|
-
"../../node_modules/
|
|
47110
|
+
"../../node_modules/diff-sequences/build/index.js"(exports2) {
|
|
47109
47111
|
"use strict";
|
|
47110
47112
|
Object.defineProperty(exports2, "__esModule", {
|
|
47111
47113
|
value: true
|
|
@@ -53013,7 +53015,7 @@ var upgrades = [
|
|
|
53013
53015
|
var package_default = {
|
|
53014
53016
|
name: "@carbon/upgrade",
|
|
53015
53017
|
description: "A tool for upgrading Carbon versions",
|
|
53016
|
-
version: "11.
|
|
53018
|
+
version: "11.30.0",
|
|
53017
53019
|
license: "Apache-2.0",
|
|
53018
53020
|
bin: {
|
|
53019
53021
|
"carbon-upgrade": "./bin/carbon-upgrade.js"
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@carbon/upgrade",
|
|
3
3
|
"description": "A tool for upgrading Carbon versions",
|
|
4
|
-
"version": "11.
|
|
4
|
+
"version": "11.30.0",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"bin": {
|
|
7
7
|
"carbon-upgrade": "./bin/carbon-upgrade.js"
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
"@ibm/telemetry-js": "^1.5.0",
|
|
62
62
|
"jscodeshift": "^17.0.0"
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "faed0dec20f49fc7a98d7509c2c0170dff9992fc"
|
|
65
65
|
}
|