@takeshape/cli 11.133.0 → 11.133.4
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/dist/index.js +12 -12
- package/package.json +6 -6
package/dist/index.js
CHANGED
|
@@ -206905,7 +206905,7 @@ var engines = {
|
|
|
206905
206905
|
};
|
|
206906
206906
|
var package_default = {
|
|
206907
206907
|
name: "@takeshape/cli",
|
|
206908
|
-
version: "11.133.
|
|
206908
|
+
version: "11.133.4",
|
|
206909
206909
|
description: "TakeShape CLI",
|
|
206910
206910
|
homepage: "https://www.takeshape.io",
|
|
206911
206911
|
repository: {
|
|
@@ -208568,18 +208568,18 @@ var REMOVE = Symbol("REMOVE");
|
|
|
208568
208568
|
function arrayFilter(value2) {
|
|
208569
208569
|
return value2 !== REMOVE;
|
|
208570
208570
|
}
|
|
208571
|
-
function deepCloneWith(
|
|
208572
|
-
const clone = (
|
|
208573
|
-
const newValue = customizer(
|
|
208571
|
+
function deepCloneWith(obj2, customizer) {
|
|
208572
|
+
const clone = (value2, key, parent) => {
|
|
208573
|
+
const newValue = customizer(value2, key, parent, clone);
|
|
208574
208574
|
if (newValue !== void 0) {
|
|
208575
208575
|
return newValue;
|
|
208576
208576
|
}
|
|
208577
|
-
if (Array.isArray(
|
|
208578
|
-
const { length } =
|
|
208577
|
+
if (Array.isArray(value2)) {
|
|
208578
|
+
const { length } = value2;
|
|
208579
208579
|
const arr = new Array(length);
|
|
208580
208580
|
let edited = false;
|
|
208581
208581
|
for (let i2 = 0; i2 < length; i2++) {
|
|
208582
|
-
const newValue2 = clone(
|
|
208582
|
+
const newValue2 = clone(value2[i2], i2, value2);
|
|
208583
208583
|
if (newValue2 === REMOVE) {
|
|
208584
208584
|
edited = true;
|
|
208585
208585
|
}
|
|
@@ -208587,19 +208587,19 @@ function deepCloneWith(value2, customizer) {
|
|
|
208587
208587
|
}
|
|
208588
208588
|
return edited ? arr.filter(arrayFilter) : arr;
|
|
208589
208589
|
}
|
|
208590
|
-
if (isIterableObject(
|
|
208590
|
+
if (isIterableObject(value2)) {
|
|
208591
208591
|
const newObject = {};
|
|
208592
|
-
for (const key2 of Object.keys(
|
|
208593
|
-
const newValue2 = clone(
|
|
208592
|
+
for (const key2 of Object.keys(value2)) {
|
|
208593
|
+
const newValue2 = clone(value2[key2], key2, value2);
|
|
208594
208594
|
if (newValue2 !== void 0 && newValue2 !== REMOVE) {
|
|
208595
208595
|
newObject[key2] = newValue2;
|
|
208596
208596
|
}
|
|
208597
208597
|
}
|
|
208598
208598
|
return newObject;
|
|
208599
208599
|
}
|
|
208600
|
-
return
|
|
208600
|
+
return value2;
|
|
208601
208601
|
};
|
|
208602
|
-
return clone(
|
|
208602
|
+
return clone(obj2, void 0, void 0);
|
|
208603
208603
|
}
|
|
208604
208604
|
|
|
208605
208605
|
// ../util/dist/common/delay.js
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@takeshape/cli",
|
|
3
|
-
"version": "11.133.
|
|
3
|
+
"version": "11.133.4",
|
|
4
4
|
"description": "TakeShape CLI",
|
|
5
5
|
"homepage": "https://www.takeshape.io",
|
|
6
6
|
"repository": {
|
|
@@ -69,11 +69,11 @@
|
|
|
69
69
|
"stream-to-promise": "2.2.0",
|
|
70
70
|
"tmp": "0.0.33",
|
|
71
71
|
"unzipper": "0.10.11",
|
|
72
|
-
"@takeshape/branches": "11.133.
|
|
73
|
-
"@takeshape/schema": "11.133.
|
|
74
|
-
"@takeshape/ssg": "11.133.
|
|
75
|
-
"@takeshape/util": "11.133.
|
|
76
|
-
"@takeshape/streams": "11.133.
|
|
72
|
+
"@takeshape/branches": "11.133.4",
|
|
73
|
+
"@takeshape/schema": "11.133.4",
|
|
74
|
+
"@takeshape/ssg": "11.133.4",
|
|
75
|
+
"@takeshape/util": "11.133.4",
|
|
76
|
+
"@takeshape/streams": "11.133.4"
|
|
77
77
|
},
|
|
78
78
|
"engines": {
|
|
79
79
|
"node": ">=22"
|