@sanity/cli 5.13.0-next.34 → 5.13.0-next.36
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/lib/_chunks-cjs/cli.js +24 -3
- package/lib/_chunks-cjs/cli.js.map +1 -1
- package/package.json +6 -6
package/lib/_chunks-cjs/cli.js
CHANGED
|
@@ -36615,7 +36615,7 @@ class PipeProxyErrors extends Pipe {
|
|
|
36615
36615
|
this.src.removeListener("error", this.proxyErrors), super.unpipe();
|
|
36616
36616
|
}
|
|
36617
36617
|
constructor(src, dest, opts) {
|
|
36618
|
-
super(src, dest, opts), this.proxyErrors = (er) => dest.emit("error", er), src.on("error", this.proxyErrors);
|
|
36618
|
+
super(src, dest, opts), this.proxyErrors = (er) => this.dest.emit("error", er), src.on("error", this.proxyErrors);
|
|
36619
36619
|
}
|
|
36620
36620
|
}
|
|
36621
36621
|
const isObjectModeOptions = (o) => !!o.objectMode, isEncodingOptions = (o) => !o.objectMode && !!o.encoding && o.encoding !== "buffer";
|
|
@@ -37089,6 +37089,8 @@ class Minipass extends node_events.EventEmitter {
|
|
|
37089
37089
|
return: stop,
|
|
37090
37090
|
[Symbol.asyncIterator]() {
|
|
37091
37091
|
return this;
|
|
37092
|
+
},
|
|
37093
|
+
[Symbol.asyncDispose]: async () => {
|
|
37092
37094
|
}
|
|
37093
37095
|
};
|
|
37094
37096
|
}
|
|
@@ -37113,6 +37115,8 @@ class Minipass extends node_events.EventEmitter {
|
|
|
37113
37115
|
return: stop,
|
|
37114
37116
|
[Symbol.iterator]() {
|
|
37115
37117
|
return this;
|
|
37118
|
+
},
|
|
37119
|
+
[Symbol.dispose]: () => {
|
|
37116
37120
|
}
|
|
37117
37121
|
};
|
|
37118
37122
|
}
|
|
@@ -44431,7 +44435,7 @@ var lodash = lodash$1.exports, hasRequiredLodash;
|
|
|
44431
44435
|
function requireLodash() {
|
|
44432
44436
|
return hasRequiredLodash || (hasRequiredLodash = 1, (function(module2, exports$1) {
|
|
44433
44437
|
(function() {
|
|
44434
|
-
var undefined$1, VERSION = "4.17.
|
|
44438
|
+
var undefined$1, VERSION = "4.17.23", LARGE_ARRAY_SIZE2 = 200, CORE_ERROR_TEXT = "Unsupported core-js use. Try https://npms.io/search?q=ponyfill.", FUNC_ERROR_TEXT2 = "Expected a function", INVALID_TEMPL_VAR_ERROR_TEXT = "Invalid `variable` option passed into `_.template`", HASH_UNDEFINED2 = "__lodash_hash_undefined__", MAX_MEMOIZE_SIZE2 = 500, PLACEHOLDER = "__lodash_placeholder__", CLONE_DEEP_FLAG2 = 1, CLONE_FLAT_FLAG2 = 2, CLONE_SYMBOLS_FLAG2 = 4, COMPARE_PARTIAL_FLAG2 = 1, COMPARE_UNORDERED_FLAG2 = 2, WRAP_BIND_FLAG = 1, WRAP_BIND_KEY_FLAG = 2, WRAP_CURRY_BOUND_FLAG = 4, WRAP_CURRY_FLAG = 8, WRAP_CURRY_RIGHT_FLAG = 16, WRAP_PARTIAL_FLAG = 32, WRAP_PARTIAL_RIGHT_FLAG = 64, WRAP_ARY_FLAG = 128, WRAP_REARG_FLAG = 256, WRAP_FLIP_FLAG = 512, DEFAULT_TRUNC_LENGTH = 30, DEFAULT_TRUNC_OMISSION = "...", HOT_COUNT2 = 800, HOT_SPAN2 = 16, LAZY_FILTER_FLAG = 1, LAZY_MAP_FLAG = 2, LAZY_WHILE_FLAG = 3, INFINITY2 = 1 / 0, MAX_SAFE_INTEGER2 = 9007199254740991, MAX_INTEGER2 = 17976931348623157e292, NAN2 = NaN, MAX_ARRAY_LENGTH = 4294967295, MAX_ARRAY_INDEX = MAX_ARRAY_LENGTH - 1, HALF_MAX_ARRAY_LENGTH = MAX_ARRAY_LENGTH >>> 1, wrapFlags = [
|
|
44435
44439
|
["ary", WRAP_ARY_FLAG],
|
|
44436
44440
|
["bind", WRAP_BIND_FLAG],
|
|
44437
44441
|
["bindKey", WRAP_BIND_KEY_FLAG],
|
|
@@ -45803,7 +45807,24 @@ function requireLodash() {
|
|
|
45803
45807
|
return result2;
|
|
45804
45808
|
}
|
|
45805
45809
|
function baseUnset2(object, path2) {
|
|
45806
|
-
|
|
45810
|
+
path2 = castPath2(path2, object);
|
|
45811
|
+
var index = -1, length = path2.length;
|
|
45812
|
+
if (!length)
|
|
45813
|
+
return !0;
|
|
45814
|
+
for (var isRootPrimitive = object == null || typeof object != "object" && typeof object != "function"; ++index < length; ) {
|
|
45815
|
+
var key2 = path2[index];
|
|
45816
|
+
if (typeof key2 == "string") {
|
|
45817
|
+
if (key2 === "__proto__" && !hasOwnProperty2.call(object, "__proto__"))
|
|
45818
|
+
return !1;
|
|
45819
|
+
if (key2 === "constructor" && index + 1 < length && typeof path2[index + 1] == "string" && path2[index + 1] === "prototype") {
|
|
45820
|
+
if (isRootPrimitive && index === 0)
|
|
45821
|
+
continue;
|
|
45822
|
+
return !1;
|
|
45823
|
+
}
|
|
45824
|
+
}
|
|
45825
|
+
}
|
|
45826
|
+
var obj = parent2(object, path2);
|
|
45827
|
+
return obj == null || delete obj[toKey2(last2(path2))];
|
|
45807
45828
|
}
|
|
45808
45829
|
function baseUpdate(object, path2, updater, customizer) {
|
|
45809
45830
|
return baseSet2(object, path2, updater(baseGet2(object, path2)), customizer);
|