@modern-js/dependence-generator 3.7.19 → 3.7.21
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 +805 -855
- package/package.json +10 -10
package/dist/index.js
CHANGED
|
@@ -1629,9 +1629,648 @@ var require_source = __commonJS({
|
|
|
1629
1629
|
}
|
|
1630
1630
|
});
|
|
1631
1631
|
|
|
1632
|
-
// ../../../../node_modules/.pnpm/
|
|
1632
|
+
// ../../../../node_modules/.pnpm/ms@2.1.3/node_modules/ms/index.js
|
|
1633
|
+
var require_ms = __commonJS({
|
|
1634
|
+
"../../../../node_modules/.pnpm/ms@2.1.3/node_modules/ms/index.js"(exports, module2) {
|
|
1635
|
+
"use strict";
|
|
1636
|
+
var s = 1e3;
|
|
1637
|
+
var m = s * 60;
|
|
1638
|
+
var h = m * 60;
|
|
1639
|
+
var d = h * 24;
|
|
1640
|
+
var w = d * 7;
|
|
1641
|
+
var y = d * 365.25;
|
|
1642
|
+
module2.exports = function(val, options) {
|
|
1643
|
+
options = options || {};
|
|
1644
|
+
var type = typeof val;
|
|
1645
|
+
if (type === "string" && val.length > 0) {
|
|
1646
|
+
return parse3(val);
|
|
1647
|
+
} else if (type === "number" && isFinite(val)) {
|
|
1648
|
+
return options.long ? fmtLong(val) : fmtShort(val);
|
|
1649
|
+
}
|
|
1650
|
+
throw new Error(
|
|
1651
|
+
"val is not a non-empty string or a valid number. val=" + JSON.stringify(val)
|
|
1652
|
+
);
|
|
1653
|
+
};
|
|
1654
|
+
function parse3(str) {
|
|
1655
|
+
str = String(str);
|
|
1656
|
+
if (str.length > 100) {
|
|
1657
|
+
return;
|
|
1658
|
+
}
|
|
1659
|
+
var match = /^(-?(?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec(
|
|
1660
|
+
str
|
|
1661
|
+
);
|
|
1662
|
+
if (!match) {
|
|
1663
|
+
return;
|
|
1664
|
+
}
|
|
1665
|
+
var n = parseFloat(match[1]);
|
|
1666
|
+
var type = (match[2] || "ms").toLowerCase();
|
|
1667
|
+
switch (type) {
|
|
1668
|
+
case "years":
|
|
1669
|
+
case "year":
|
|
1670
|
+
case "yrs":
|
|
1671
|
+
case "yr":
|
|
1672
|
+
case "y":
|
|
1673
|
+
return n * y;
|
|
1674
|
+
case "weeks":
|
|
1675
|
+
case "week":
|
|
1676
|
+
case "w":
|
|
1677
|
+
return n * w;
|
|
1678
|
+
case "days":
|
|
1679
|
+
case "day":
|
|
1680
|
+
case "d":
|
|
1681
|
+
return n * d;
|
|
1682
|
+
case "hours":
|
|
1683
|
+
case "hour":
|
|
1684
|
+
case "hrs":
|
|
1685
|
+
case "hr":
|
|
1686
|
+
case "h":
|
|
1687
|
+
return n * h;
|
|
1688
|
+
case "minutes":
|
|
1689
|
+
case "minute":
|
|
1690
|
+
case "mins":
|
|
1691
|
+
case "min":
|
|
1692
|
+
case "m":
|
|
1693
|
+
return n * m;
|
|
1694
|
+
case "seconds":
|
|
1695
|
+
case "second":
|
|
1696
|
+
case "secs":
|
|
1697
|
+
case "sec":
|
|
1698
|
+
case "s":
|
|
1699
|
+
return n * s;
|
|
1700
|
+
case "milliseconds":
|
|
1701
|
+
case "millisecond":
|
|
1702
|
+
case "msecs":
|
|
1703
|
+
case "msec":
|
|
1704
|
+
case "ms":
|
|
1705
|
+
return n;
|
|
1706
|
+
default:
|
|
1707
|
+
return void 0;
|
|
1708
|
+
}
|
|
1709
|
+
}
|
|
1710
|
+
function fmtShort(ms) {
|
|
1711
|
+
var msAbs = Math.abs(ms);
|
|
1712
|
+
if (msAbs >= d) {
|
|
1713
|
+
return Math.round(ms / d) + "d";
|
|
1714
|
+
}
|
|
1715
|
+
if (msAbs >= h) {
|
|
1716
|
+
return Math.round(ms / h) + "h";
|
|
1717
|
+
}
|
|
1718
|
+
if (msAbs >= m) {
|
|
1719
|
+
return Math.round(ms / m) + "m";
|
|
1720
|
+
}
|
|
1721
|
+
if (msAbs >= s) {
|
|
1722
|
+
return Math.round(ms / s) + "s";
|
|
1723
|
+
}
|
|
1724
|
+
return ms + "ms";
|
|
1725
|
+
}
|
|
1726
|
+
function fmtLong(ms) {
|
|
1727
|
+
var msAbs = Math.abs(ms);
|
|
1728
|
+
if (msAbs >= d) {
|
|
1729
|
+
return plural(ms, msAbs, d, "day");
|
|
1730
|
+
}
|
|
1731
|
+
if (msAbs >= h) {
|
|
1732
|
+
return plural(ms, msAbs, h, "hour");
|
|
1733
|
+
}
|
|
1734
|
+
if (msAbs >= m) {
|
|
1735
|
+
return plural(ms, msAbs, m, "minute");
|
|
1736
|
+
}
|
|
1737
|
+
if (msAbs >= s) {
|
|
1738
|
+
return plural(ms, msAbs, s, "second");
|
|
1739
|
+
}
|
|
1740
|
+
return ms + " ms";
|
|
1741
|
+
}
|
|
1742
|
+
function plural(ms, msAbs, n, name) {
|
|
1743
|
+
var isPlural = msAbs >= n * 1.5;
|
|
1744
|
+
return Math.round(ms / n) + " " + name + (isPlural ? "s" : "");
|
|
1745
|
+
}
|
|
1746
|
+
}
|
|
1747
|
+
});
|
|
1748
|
+
|
|
1749
|
+
// ../../../../node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/common.js
|
|
1750
|
+
var require_common = __commonJS({
|
|
1751
|
+
"../../../../node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/common.js"(exports, module2) {
|
|
1752
|
+
"use strict";
|
|
1753
|
+
function setup(env) {
|
|
1754
|
+
createDebug.debug = createDebug;
|
|
1755
|
+
createDebug.default = createDebug;
|
|
1756
|
+
createDebug.coerce = coerce;
|
|
1757
|
+
createDebug.disable = disable;
|
|
1758
|
+
createDebug.enable = enable;
|
|
1759
|
+
createDebug.enabled = enabled;
|
|
1760
|
+
createDebug.humanize = require_ms();
|
|
1761
|
+
createDebug.destroy = destroy;
|
|
1762
|
+
Object.keys(env).forEach((key) => {
|
|
1763
|
+
createDebug[key] = env[key];
|
|
1764
|
+
});
|
|
1765
|
+
createDebug.names = [];
|
|
1766
|
+
createDebug.skips = [];
|
|
1767
|
+
createDebug.formatters = {};
|
|
1768
|
+
function selectColor(namespace) {
|
|
1769
|
+
let hash = 0;
|
|
1770
|
+
for (let i = 0; i < namespace.length; i++) {
|
|
1771
|
+
hash = (hash << 5) - hash + namespace.charCodeAt(i);
|
|
1772
|
+
hash |= 0;
|
|
1773
|
+
}
|
|
1774
|
+
return createDebug.colors[Math.abs(hash) % createDebug.colors.length];
|
|
1775
|
+
}
|
|
1776
|
+
createDebug.selectColor = selectColor;
|
|
1777
|
+
function createDebug(namespace) {
|
|
1778
|
+
let prevTime;
|
|
1779
|
+
let enableOverride = null;
|
|
1780
|
+
let namespacesCache;
|
|
1781
|
+
let enabledCache;
|
|
1782
|
+
function debug(...args) {
|
|
1783
|
+
if (!debug.enabled) {
|
|
1784
|
+
return;
|
|
1785
|
+
}
|
|
1786
|
+
const self3 = debug;
|
|
1787
|
+
const curr = Number(/* @__PURE__ */ new Date());
|
|
1788
|
+
const ms = curr - (prevTime || curr);
|
|
1789
|
+
self3.diff = ms;
|
|
1790
|
+
self3.prev = prevTime;
|
|
1791
|
+
self3.curr = curr;
|
|
1792
|
+
prevTime = curr;
|
|
1793
|
+
args[0] = createDebug.coerce(args[0]);
|
|
1794
|
+
if (typeof args[0] !== "string") {
|
|
1795
|
+
args.unshift("%O");
|
|
1796
|
+
}
|
|
1797
|
+
let index = 0;
|
|
1798
|
+
args[0] = args[0].replace(/%([a-zA-Z%])/g, (match, format) => {
|
|
1799
|
+
if (match === "%%") {
|
|
1800
|
+
return "%";
|
|
1801
|
+
}
|
|
1802
|
+
index++;
|
|
1803
|
+
const formatter = createDebug.formatters[format];
|
|
1804
|
+
if (typeof formatter === "function") {
|
|
1805
|
+
const val = args[index];
|
|
1806
|
+
match = formatter.call(self3, val);
|
|
1807
|
+
args.splice(index, 1);
|
|
1808
|
+
index--;
|
|
1809
|
+
}
|
|
1810
|
+
return match;
|
|
1811
|
+
});
|
|
1812
|
+
createDebug.formatArgs.call(self3, args);
|
|
1813
|
+
const logFn = self3.log || createDebug.log;
|
|
1814
|
+
logFn.apply(self3, args);
|
|
1815
|
+
}
|
|
1816
|
+
debug.namespace = namespace;
|
|
1817
|
+
debug.useColors = createDebug.useColors();
|
|
1818
|
+
debug.color = createDebug.selectColor(namespace);
|
|
1819
|
+
debug.extend = extend;
|
|
1820
|
+
debug.destroy = createDebug.destroy;
|
|
1821
|
+
Object.defineProperty(debug, "enabled", {
|
|
1822
|
+
enumerable: true,
|
|
1823
|
+
configurable: false,
|
|
1824
|
+
get: () => {
|
|
1825
|
+
if (enableOverride !== null) {
|
|
1826
|
+
return enableOverride;
|
|
1827
|
+
}
|
|
1828
|
+
if (namespacesCache !== createDebug.namespaces) {
|
|
1829
|
+
namespacesCache = createDebug.namespaces;
|
|
1830
|
+
enabledCache = createDebug.enabled(namespace);
|
|
1831
|
+
}
|
|
1832
|
+
return enabledCache;
|
|
1833
|
+
},
|
|
1834
|
+
set: (v) => {
|
|
1835
|
+
enableOverride = v;
|
|
1836
|
+
}
|
|
1837
|
+
});
|
|
1838
|
+
if (typeof createDebug.init === "function") {
|
|
1839
|
+
createDebug.init(debug);
|
|
1840
|
+
}
|
|
1841
|
+
return debug;
|
|
1842
|
+
}
|
|
1843
|
+
function extend(namespace, delimiter) {
|
|
1844
|
+
const newDebug = createDebug(this.namespace + (typeof delimiter === "undefined" ? ":" : delimiter) + namespace);
|
|
1845
|
+
newDebug.log = this.log;
|
|
1846
|
+
return newDebug;
|
|
1847
|
+
}
|
|
1848
|
+
function enable(namespaces) {
|
|
1849
|
+
createDebug.save(namespaces);
|
|
1850
|
+
createDebug.namespaces = namespaces;
|
|
1851
|
+
createDebug.names = [];
|
|
1852
|
+
createDebug.skips = [];
|
|
1853
|
+
let i;
|
|
1854
|
+
const split = (typeof namespaces === "string" ? namespaces : "").split(/[\s,]+/);
|
|
1855
|
+
const len = split.length;
|
|
1856
|
+
for (i = 0; i < len; i++) {
|
|
1857
|
+
if (!split[i]) {
|
|
1858
|
+
continue;
|
|
1859
|
+
}
|
|
1860
|
+
namespaces = split[i].replace(/\*/g, ".*?");
|
|
1861
|
+
if (namespaces[0] === "-") {
|
|
1862
|
+
createDebug.skips.push(new RegExp("^" + namespaces.slice(1) + "$"));
|
|
1863
|
+
} else {
|
|
1864
|
+
createDebug.names.push(new RegExp("^" + namespaces + "$"));
|
|
1865
|
+
}
|
|
1866
|
+
}
|
|
1867
|
+
}
|
|
1868
|
+
function disable() {
|
|
1869
|
+
const namespaces = [
|
|
1870
|
+
...createDebug.names.map(toNamespace),
|
|
1871
|
+
...createDebug.skips.map(toNamespace).map((namespace) => "-" + namespace)
|
|
1872
|
+
].join(",");
|
|
1873
|
+
createDebug.enable("");
|
|
1874
|
+
return namespaces;
|
|
1875
|
+
}
|
|
1876
|
+
function enabled(name) {
|
|
1877
|
+
if (name[name.length - 1] === "*") {
|
|
1878
|
+
return true;
|
|
1879
|
+
}
|
|
1880
|
+
let i;
|
|
1881
|
+
let len;
|
|
1882
|
+
for (i = 0, len = createDebug.skips.length; i < len; i++) {
|
|
1883
|
+
if (createDebug.skips[i].test(name)) {
|
|
1884
|
+
return false;
|
|
1885
|
+
}
|
|
1886
|
+
}
|
|
1887
|
+
for (i = 0, len = createDebug.names.length; i < len; i++) {
|
|
1888
|
+
if (createDebug.names[i].test(name)) {
|
|
1889
|
+
return true;
|
|
1890
|
+
}
|
|
1891
|
+
}
|
|
1892
|
+
return false;
|
|
1893
|
+
}
|
|
1894
|
+
function toNamespace(regexp) {
|
|
1895
|
+
return regexp.toString().substring(2, regexp.toString().length - 2).replace(/\.\*\?$/, "*");
|
|
1896
|
+
}
|
|
1897
|
+
function coerce(val) {
|
|
1898
|
+
if (val instanceof Error) {
|
|
1899
|
+
return val.stack || val.message;
|
|
1900
|
+
}
|
|
1901
|
+
return val;
|
|
1902
|
+
}
|
|
1903
|
+
function destroy() {
|
|
1904
|
+
console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.");
|
|
1905
|
+
}
|
|
1906
|
+
createDebug.enable(createDebug.load());
|
|
1907
|
+
return createDebug;
|
|
1908
|
+
}
|
|
1909
|
+
module2.exports = setup;
|
|
1910
|
+
}
|
|
1911
|
+
});
|
|
1912
|
+
|
|
1913
|
+
// ../../../../node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/browser.js
|
|
1914
|
+
var require_browser = __commonJS({
|
|
1915
|
+
"../../../../node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/browser.js"(exports, module2) {
|
|
1916
|
+
"use strict";
|
|
1917
|
+
exports.formatArgs = formatArgs;
|
|
1918
|
+
exports.save = save;
|
|
1919
|
+
exports.load = load;
|
|
1920
|
+
exports.useColors = useColors;
|
|
1921
|
+
exports.storage = localstorage();
|
|
1922
|
+
exports.destroy = (() => {
|
|
1923
|
+
let warned = false;
|
|
1924
|
+
return () => {
|
|
1925
|
+
if (!warned) {
|
|
1926
|
+
warned = true;
|
|
1927
|
+
console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.");
|
|
1928
|
+
}
|
|
1929
|
+
};
|
|
1930
|
+
})();
|
|
1931
|
+
exports.colors = [
|
|
1932
|
+
"#0000CC",
|
|
1933
|
+
"#0000FF",
|
|
1934
|
+
"#0033CC",
|
|
1935
|
+
"#0033FF",
|
|
1936
|
+
"#0066CC",
|
|
1937
|
+
"#0066FF",
|
|
1938
|
+
"#0099CC",
|
|
1939
|
+
"#0099FF",
|
|
1940
|
+
"#00CC00",
|
|
1941
|
+
"#00CC33",
|
|
1942
|
+
"#00CC66",
|
|
1943
|
+
"#00CC99",
|
|
1944
|
+
"#00CCCC",
|
|
1945
|
+
"#00CCFF",
|
|
1946
|
+
"#3300CC",
|
|
1947
|
+
"#3300FF",
|
|
1948
|
+
"#3333CC",
|
|
1949
|
+
"#3333FF",
|
|
1950
|
+
"#3366CC",
|
|
1951
|
+
"#3366FF",
|
|
1952
|
+
"#3399CC",
|
|
1953
|
+
"#3399FF",
|
|
1954
|
+
"#33CC00",
|
|
1955
|
+
"#33CC33",
|
|
1956
|
+
"#33CC66",
|
|
1957
|
+
"#33CC99",
|
|
1958
|
+
"#33CCCC",
|
|
1959
|
+
"#33CCFF",
|
|
1960
|
+
"#6600CC",
|
|
1961
|
+
"#6600FF",
|
|
1962
|
+
"#6633CC",
|
|
1963
|
+
"#6633FF",
|
|
1964
|
+
"#66CC00",
|
|
1965
|
+
"#66CC33",
|
|
1966
|
+
"#9900CC",
|
|
1967
|
+
"#9900FF",
|
|
1968
|
+
"#9933CC",
|
|
1969
|
+
"#9933FF",
|
|
1970
|
+
"#99CC00",
|
|
1971
|
+
"#99CC33",
|
|
1972
|
+
"#CC0000",
|
|
1973
|
+
"#CC0033",
|
|
1974
|
+
"#CC0066",
|
|
1975
|
+
"#CC0099",
|
|
1976
|
+
"#CC00CC",
|
|
1977
|
+
"#CC00FF",
|
|
1978
|
+
"#CC3300",
|
|
1979
|
+
"#CC3333",
|
|
1980
|
+
"#CC3366",
|
|
1981
|
+
"#CC3399",
|
|
1982
|
+
"#CC33CC",
|
|
1983
|
+
"#CC33FF",
|
|
1984
|
+
"#CC6600",
|
|
1985
|
+
"#CC6633",
|
|
1986
|
+
"#CC9900",
|
|
1987
|
+
"#CC9933",
|
|
1988
|
+
"#CCCC00",
|
|
1989
|
+
"#CCCC33",
|
|
1990
|
+
"#FF0000",
|
|
1991
|
+
"#FF0033",
|
|
1992
|
+
"#FF0066",
|
|
1993
|
+
"#FF0099",
|
|
1994
|
+
"#FF00CC",
|
|
1995
|
+
"#FF00FF",
|
|
1996
|
+
"#FF3300",
|
|
1997
|
+
"#FF3333",
|
|
1998
|
+
"#FF3366",
|
|
1999
|
+
"#FF3399",
|
|
2000
|
+
"#FF33CC",
|
|
2001
|
+
"#FF33FF",
|
|
2002
|
+
"#FF6600",
|
|
2003
|
+
"#FF6633",
|
|
2004
|
+
"#FF9900",
|
|
2005
|
+
"#FF9933",
|
|
2006
|
+
"#FFCC00",
|
|
2007
|
+
"#FFCC33"
|
|
2008
|
+
];
|
|
2009
|
+
function useColors() {
|
|
2010
|
+
if (typeof window !== "undefined" && window.process && (window.process.type === "renderer" || window.process.__nwjs)) {
|
|
2011
|
+
return true;
|
|
2012
|
+
}
|
|
2013
|
+
if (typeof navigator !== "undefined" && navigator.userAgent && navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/)) {
|
|
2014
|
+
return false;
|
|
2015
|
+
}
|
|
2016
|
+
let m;
|
|
2017
|
+
return typeof document !== "undefined" && document.documentElement && document.documentElement.style && document.documentElement.style.WebkitAppearance || // Is firebug? http://stackoverflow.com/a/398120/376773
|
|
2018
|
+
typeof window !== "undefined" && window.console && (window.console.firebug || window.console.exception && window.console.table) || // Is firefox >= v31?
|
|
2019
|
+
// https://developer.mozilla.org/en-US/docs/Tools/Web_Console#Styling_messages
|
|
2020
|
+
typeof navigator !== "undefined" && navigator.userAgent && (m = navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/)) && parseInt(m[1], 10) >= 31 || // Double check webkit in userAgent just in case we are in a worker
|
|
2021
|
+
typeof navigator !== "undefined" && navigator.userAgent && navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/);
|
|
2022
|
+
}
|
|
2023
|
+
function formatArgs(args) {
|
|
2024
|
+
args[0] = (this.useColors ? "%c" : "") + this.namespace + (this.useColors ? " %c" : " ") + args[0] + (this.useColors ? "%c " : " ") + "+" + module2.exports.humanize(this.diff);
|
|
2025
|
+
if (!this.useColors) {
|
|
2026
|
+
return;
|
|
2027
|
+
}
|
|
2028
|
+
const c = "color: " + this.color;
|
|
2029
|
+
args.splice(1, 0, c, "color: inherit");
|
|
2030
|
+
let index = 0;
|
|
2031
|
+
let lastC = 0;
|
|
2032
|
+
args[0].replace(/%[a-zA-Z%]/g, (match) => {
|
|
2033
|
+
if (match === "%%") {
|
|
2034
|
+
return;
|
|
2035
|
+
}
|
|
2036
|
+
index++;
|
|
2037
|
+
if (match === "%c") {
|
|
2038
|
+
lastC = index;
|
|
2039
|
+
}
|
|
2040
|
+
});
|
|
2041
|
+
args.splice(lastC, 0, c);
|
|
2042
|
+
}
|
|
2043
|
+
exports.log = console.debug || console.log || (() => {
|
|
2044
|
+
});
|
|
2045
|
+
function save(namespaces) {
|
|
2046
|
+
try {
|
|
2047
|
+
if (namespaces) {
|
|
2048
|
+
exports.storage.setItem("debug", namespaces);
|
|
2049
|
+
} else {
|
|
2050
|
+
exports.storage.removeItem("debug");
|
|
2051
|
+
}
|
|
2052
|
+
} catch (error) {
|
|
2053
|
+
}
|
|
2054
|
+
}
|
|
2055
|
+
function load() {
|
|
2056
|
+
let r;
|
|
2057
|
+
try {
|
|
2058
|
+
r = exports.storage.getItem("debug");
|
|
2059
|
+
} catch (error) {
|
|
2060
|
+
}
|
|
2061
|
+
if (!r && typeof process !== "undefined" && "env" in process) {
|
|
2062
|
+
r = process.env.DEBUG;
|
|
2063
|
+
}
|
|
2064
|
+
return r;
|
|
2065
|
+
}
|
|
2066
|
+
function localstorage() {
|
|
2067
|
+
try {
|
|
2068
|
+
return localStorage;
|
|
2069
|
+
} catch (error) {
|
|
2070
|
+
}
|
|
2071
|
+
}
|
|
2072
|
+
module2.exports = require_common()(exports);
|
|
2073
|
+
var { formatters } = module2.exports;
|
|
2074
|
+
formatters.j = function(v) {
|
|
2075
|
+
try {
|
|
2076
|
+
return JSON.stringify(v);
|
|
2077
|
+
} catch (error) {
|
|
2078
|
+
return "[UnexpectedJSONParseError]: " + error.message;
|
|
2079
|
+
}
|
|
2080
|
+
};
|
|
2081
|
+
}
|
|
2082
|
+
});
|
|
2083
|
+
|
|
2084
|
+
// ../../../../node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/node.js
|
|
2085
|
+
var require_node = __commonJS({
|
|
2086
|
+
"../../../../node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/node.js"(exports, module2) {
|
|
2087
|
+
"use strict";
|
|
2088
|
+
var tty = require("tty");
|
|
2089
|
+
var util = require("util");
|
|
2090
|
+
exports.init = init;
|
|
2091
|
+
exports.log = log;
|
|
2092
|
+
exports.formatArgs = formatArgs;
|
|
2093
|
+
exports.save = save;
|
|
2094
|
+
exports.load = load;
|
|
2095
|
+
exports.useColors = useColors;
|
|
2096
|
+
exports.destroy = util.deprecate(
|
|
2097
|
+
() => {
|
|
2098
|
+
},
|
|
2099
|
+
"Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`."
|
|
2100
|
+
);
|
|
2101
|
+
exports.colors = [6, 2, 3, 4, 5, 1];
|
|
2102
|
+
try {
|
|
2103
|
+
const supportsColor = require_supports_color();
|
|
2104
|
+
if (supportsColor && (supportsColor.stderr || supportsColor).level >= 2) {
|
|
2105
|
+
exports.colors = [
|
|
2106
|
+
20,
|
|
2107
|
+
21,
|
|
2108
|
+
26,
|
|
2109
|
+
27,
|
|
2110
|
+
32,
|
|
2111
|
+
33,
|
|
2112
|
+
38,
|
|
2113
|
+
39,
|
|
2114
|
+
40,
|
|
2115
|
+
41,
|
|
2116
|
+
42,
|
|
2117
|
+
43,
|
|
2118
|
+
44,
|
|
2119
|
+
45,
|
|
2120
|
+
56,
|
|
2121
|
+
57,
|
|
2122
|
+
62,
|
|
2123
|
+
63,
|
|
2124
|
+
68,
|
|
2125
|
+
69,
|
|
2126
|
+
74,
|
|
2127
|
+
75,
|
|
2128
|
+
76,
|
|
2129
|
+
77,
|
|
2130
|
+
78,
|
|
2131
|
+
79,
|
|
2132
|
+
80,
|
|
2133
|
+
81,
|
|
2134
|
+
92,
|
|
2135
|
+
93,
|
|
2136
|
+
98,
|
|
2137
|
+
99,
|
|
2138
|
+
112,
|
|
2139
|
+
113,
|
|
2140
|
+
128,
|
|
2141
|
+
129,
|
|
2142
|
+
134,
|
|
2143
|
+
135,
|
|
2144
|
+
148,
|
|
2145
|
+
149,
|
|
2146
|
+
160,
|
|
2147
|
+
161,
|
|
2148
|
+
162,
|
|
2149
|
+
163,
|
|
2150
|
+
164,
|
|
2151
|
+
165,
|
|
2152
|
+
166,
|
|
2153
|
+
167,
|
|
2154
|
+
168,
|
|
2155
|
+
169,
|
|
2156
|
+
170,
|
|
2157
|
+
171,
|
|
2158
|
+
172,
|
|
2159
|
+
173,
|
|
2160
|
+
178,
|
|
2161
|
+
179,
|
|
2162
|
+
184,
|
|
2163
|
+
185,
|
|
2164
|
+
196,
|
|
2165
|
+
197,
|
|
2166
|
+
198,
|
|
2167
|
+
199,
|
|
2168
|
+
200,
|
|
2169
|
+
201,
|
|
2170
|
+
202,
|
|
2171
|
+
203,
|
|
2172
|
+
204,
|
|
2173
|
+
205,
|
|
2174
|
+
206,
|
|
2175
|
+
207,
|
|
2176
|
+
208,
|
|
2177
|
+
209,
|
|
2178
|
+
214,
|
|
2179
|
+
215,
|
|
2180
|
+
220,
|
|
2181
|
+
221
|
|
2182
|
+
];
|
|
2183
|
+
}
|
|
2184
|
+
} catch (error) {
|
|
2185
|
+
}
|
|
2186
|
+
exports.inspectOpts = Object.keys(process.env).filter((key) => {
|
|
2187
|
+
return /^debug_/i.test(key);
|
|
2188
|
+
}).reduce((obj, key) => {
|
|
2189
|
+
const prop = key.substring(6).toLowerCase().replace(/_([a-z])/g, (_, k) => {
|
|
2190
|
+
return k.toUpperCase();
|
|
2191
|
+
});
|
|
2192
|
+
let val = process.env[key];
|
|
2193
|
+
if (/^(yes|on|true|enabled)$/i.test(val)) {
|
|
2194
|
+
val = true;
|
|
2195
|
+
} else if (/^(no|off|false|disabled)$/i.test(val)) {
|
|
2196
|
+
val = false;
|
|
2197
|
+
} else if (val === "null") {
|
|
2198
|
+
val = null;
|
|
2199
|
+
} else {
|
|
2200
|
+
val = Number(val);
|
|
2201
|
+
}
|
|
2202
|
+
obj[prop] = val;
|
|
2203
|
+
return obj;
|
|
2204
|
+
}, {});
|
|
2205
|
+
function useColors() {
|
|
2206
|
+
return "colors" in exports.inspectOpts ? Boolean(exports.inspectOpts.colors) : tty.isatty(process.stderr.fd);
|
|
2207
|
+
}
|
|
2208
|
+
function formatArgs(args) {
|
|
2209
|
+
const { namespace: name, useColors: useColors2 } = this;
|
|
2210
|
+
if (useColors2) {
|
|
2211
|
+
const c = this.color;
|
|
2212
|
+
const colorCode = "\x1B[3" + (c < 8 ? c : "8;5;" + c);
|
|
2213
|
+
const prefix = ` ${colorCode};1m${name} \x1B[0m`;
|
|
2214
|
+
args[0] = prefix + args[0].split("\n").join("\n" + prefix);
|
|
2215
|
+
args.push(colorCode + "m+" + module2.exports.humanize(this.diff) + "\x1B[0m");
|
|
2216
|
+
} else {
|
|
2217
|
+
args[0] = getDate() + name + " " + args[0];
|
|
2218
|
+
}
|
|
2219
|
+
}
|
|
2220
|
+
function getDate() {
|
|
2221
|
+
if (exports.inspectOpts.hideDate) {
|
|
2222
|
+
return "";
|
|
2223
|
+
}
|
|
2224
|
+
return (/* @__PURE__ */ new Date()).toISOString() + " ";
|
|
2225
|
+
}
|
|
2226
|
+
function log(...args) {
|
|
2227
|
+
return process.stderr.write(util.formatWithOptions(exports.inspectOpts, ...args) + "\n");
|
|
2228
|
+
}
|
|
2229
|
+
function save(namespaces) {
|
|
2230
|
+
if (namespaces) {
|
|
2231
|
+
process.env.DEBUG = namespaces;
|
|
2232
|
+
} else {
|
|
2233
|
+
delete process.env.DEBUG;
|
|
2234
|
+
}
|
|
2235
|
+
}
|
|
2236
|
+
function load() {
|
|
2237
|
+
return process.env.DEBUG;
|
|
2238
|
+
}
|
|
2239
|
+
function init(debug) {
|
|
2240
|
+
debug.inspectOpts = {};
|
|
2241
|
+
const keys = Object.keys(exports.inspectOpts);
|
|
2242
|
+
for (let i = 0; i < keys.length; i++) {
|
|
2243
|
+
debug.inspectOpts[keys[i]] = exports.inspectOpts[keys[i]];
|
|
2244
|
+
}
|
|
2245
|
+
}
|
|
2246
|
+
module2.exports = require_common()(exports);
|
|
2247
|
+
var { formatters } = module2.exports;
|
|
2248
|
+
formatters.o = function(v) {
|
|
2249
|
+
this.inspectOpts.colors = this.useColors;
|
|
2250
|
+
return util.inspect(v, this.inspectOpts).split("\n").map((str) => str.trim()).join(" ");
|
|
2251
|
+
};
|
|
2252
|
+
formatters.O = function(v) {
|
|
2253
|
+
this.inspectOpts.colors = this.useColors;
|
|
2254
|
+
return util.inspect(v, this.inspectOpts);
|
|
2255
|
+
};
|
|
2256
|
+
}
|
|
2257
|
+
});
|
|
2258
|
+
|
|
2259
|
+
// ../../../../node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/index.js
|
|
2260
|
+
var require_src = __commonJS({
|
|
2261
|
+
"../../../../node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/index.js"(exports, module2) {
|
|
2262
|
+
"use strict";
|
|
2263
|
+
if (typeof process === "undefined" || process.type === "renderer" || process.browser === true || process.__nwjs) {
|
|
2264
|
+
module2.exports = require_browser();
|
|
2265
|
+
} else {
|
|
2266
|
+
module2.exports = require_node();
|
|
2267
|
+
}
|
|
2268
|
+
}
|
|
2269
|
+
});
|
|
2270
|
+
|
|
2271
|
+
// ../../../../node_modules/.pnpm/universalify@2.0.1/node_modules/universalify/index.js
|
|
1633
2272
|
var require_universalify = __commonJS({
|
|
1634
|
-
"../../../../node_modules/.pnpm/universalify@2.0.
|
|
2273
|
+
"../../../../node_modules/.pnpm/universalify@2.0.1/node_modules/universalify/index.js"(exports) {
|
|
1635
2274
|
"use strict";
|
|
1636
2275
|
exports.fromCallback = function(fn) {
|
|
1637
2276
|
return Object.defineProperty(function(...args) {
|
|
@@ -1639,11 +2278,8 @@ var require_universalify = __commonJS({
|
|
|
1639
2278
|
fn.apply(this, args);
|
|
1640
2279
|
else {
|
|
1641
2280
|
return new Promise((resolve, reject) => {
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
...args,
|
|
1645
|
-
(err, res) => err != null ? reject(err) : resolve(res)
|
|
1646
|
-
);
|
|
2281
|
+
args.push((err, res) => err != null ? reject(err) : resolve(res));
|
|
2282
|
+
fn.apply(this, args);
|
|
1647
2283
|
});
|
|
1648
2284
|
}
|
|
1649
2285
|
}, "name", { value: fn.name });
|
|
@@ -1653,8 +2289,10 @@ var require_universalify = __commonJS({
|
|
|
1653
2289
|
const cb = args[args.length - 1];
|
|
1654
2290
|
if (typeof cb !== "function")
|
|
1655
2291
|
return fn.apply(this, args);
|
|
1656
|
-
else
|
|
1657
|
-
|
|
2292
|
+
else {
|
|
2293
|
+
args.pop();
|
|
2294
|
+
fn.apply(this, args).then((r) => cb(null, r), cb);
|
|
2295
|
+
}
|
|
1658
2296
|
}, "name", { value: fn.name });
|
|
1659
2297
|
};
|
|
1660
2298
|
}
|
|
@@ -3876,6 +4514,37 @@ var require_ensure = __commonJS({
|
|
|
3876
4514
|
}
|
|
3877
4515
|
});
|
|
3878
4516
|
|
|
4517
|
+
// ../../../../node_modules/.pnpm/universalify@2.0.0/node_modules/universalify/index.js
|
|
4518
|
+
var require_universalify2 = __commonJS({
|
|
4519
|
+
"../../../../node_modules/.pnpm/universalify@2.0.0/node_modules/universalify/index.js"(exports) {
|
|
4520
|
+
"use strict";
|
|
4521
|
+
exports.fromCallback = function(fn) {
|
|
4522
|
+
return Object.defineProperty(function(...args) {
|
|
4523
|
+
if (typeof args[args.length - 1] === "function")
|
|
4524
|
+
fn.apply(this, args);
|
|
4525
|
+
else {
|
|
4526
|
+
return new Promise((resolve, reject) => {
|
|
4527
|
+
fn.call(
|
|
4528
|
+
this,
|
|
4529
|
+
...args,
|
|
4530
|
+
(err, res) => err != null ? reject(err) : resolve(res)
|
|
4531
|
+
);
|
|
4532
|
+
});
|
|
4533
|
+
}
|
|
4534
|
+
}, "name", { value: fn.name });
|
|
4535
|
+
};
|
|
4536
|
+
exports.fromPromise = function(fn) {
|
|
4537
|
+
return Object.defineProperty(function(...args) {
|
|
4538
|
+
const cb = args[args.length - 1];
|
|
4539
|
+
if (typeof cb !== "function")
|
|
4540
|
+
return fn.apply(this, args);
|
|
4541
|
+
else
|
|
4542
|
+
fn.apply(this, args.slice(0, -1)).then((r) => cb(null, r), cb);
|
|
4543
|
+
}, "name", { value: fn.name });
|
|
4544
|
+
};
|
|
4545
|
+
}
|
|
4546
|
+
});
|
|
4547
|
+
|
|
3879
4548
|
// ../../../../node_modules/.pnpm/jsonfile@6.1.0/node_modules/jsonfile/utils.js
|
|
3880
4549
|
var require_utils2 = __commonJS({
|
|
3881
4550
|
"../../../../node_modules/.pnpm/jsonfile@6.1.0/node_modules/jsonfile/utils.js"(exports, module2) {
|
|
@@ -3904,7 +4573,7 @@ var require_jsonfile = __commonJS({
|
|
|
3904
4573
|
} catch (_) {
|
|
3905
4574
|
_fs = require("fs");
|
|
3906
4575
|
}
|
|
3907
|
-
var universalify =
|
|
4576
|
+
var universalify = require_universalify2();
|
|
3908
4577
|
var { stringify: stringify2, stripBom } = require_utils2();
|
|
3909
4578
|
function _readFile(_0) {
|
|
3910
4579
|
return __async(this, arguments, function* (file, options = {}) {
|
|
@@ -11133,7 +11802,7 @@ var require_inherits = __commonJS({
|
|
|
11133
11802
|
});
|
|
11134
11803
|
|
|
11135
11804
|
// ../../../../node_modules/.pnpm/util-deprecate@1.0.2/node_modules/util-deprecate/node.js
|
|
11136
|
-
var
|
|
11805
|
+
var require_node2 = __commonJS({
|
|
11137
11806
|
"../../../../node_modules/.pnpm/util-deprecate@1.0.2/node_modules/util-deprecate/node.js"(exports, module2) {
|
|
11138
11807
|
"use strict";
|
|
11139
11808
|
module2.exports = require("util").deprecate;
|
|
@@ -11156,7 +11825,7 @@ var require_stream_writable = __commonJS({
|
|
|
11156
11825
|
var Duplex;
|
|
11157
11826
|
Writable.WritableState = WritableState;
|
|
11158
11827
|
var internalUtil = {
|
|
11159
|
-
deprecate:
|
|
11828
|
+
deprecate: require_node2()
|
|
11160
11829
|
};
|
|
11161
11830
|
var Stream = require_stream2();
|
|
11162
11831
|
var Buffer2 = require("buffer").Buffer;
|
|
@@ -53705,7 +54374,7 @@ var require_util3 = __commonJS({
|
|
|
53705
54374
|
});
|
|
53706
54375
|
|
|
53707
54376
|
// ../../../../node_modules/.pnpm/array-timsort@1.0.3/node_modules/array-timsort/src/index.js
|
|
53708
|
-
var
|
|
54377
|
+
var require_src2 = __commonJS({
|
|
53709
54378
|
"../../../../node_modules/.pnpm/array-timsort@1.0.3/node_modules/array-timsort/src/index.js"(exports, module2) {
|
|
53710
54379
|
"use strict";
|
|
53711
54380
|
var DEFAULT_MIN_MERGE = 32;
|
|
@@ -54428,7 +55097,7 @@ var require_has_own_prop = __commonJS({
|
|
|
54428
55097
|
});
|
|
54429
55098
|
|
|
54430
55099
|
// ../../../../node_modules/.pnpm/comment-json@4.2.3/node_modules/comment-json/src/common.js
|
|
54431
|
-
var
|
|
55100
|
+
var require_common2 = __commonJS({
|
|
54432
55101
|
"../../../../node_modules/.pnpm/comment-json@4.2.3/node_modules/comment-json/src/common.js"(exports, module2) {
|
|
54433
55102
|
"use strict";
|
|
54434
55103
|
var hasOwnProperty4 = require_has_own_prop();
|
|
@@ -54581,14 +55250,14 @@ var require_array = __commonJS({
|
|
|
54581
55250
|
"../../../../node_modules/.pnpm/comment-json@4.2.3/node_modules/comment-json/src/array.js"(exports, module2) {
|
|
54582
55251
|
"use strict";
|
|
54583
55252
|
var { isArray: isArray3 } = require_util3();
|
|
54584
|
-
var { sort } =
|
|
55253
|
+
var { sort } = require_src2();
|
|
54585
55254
|
var {
|
|
54586
55255
|
SYMBOL_PREFIXES,
|
|
54587
55256
|
UNDEFINED,
|
|
54588
55257
|
symbol,
|
|
54589
55258
|
copy_comments,
|
|
54590
55259
|
swap_comments
|
|
54591
|
-
} =
|
|
55260
|
+
} = require_common2();
|
|
54592
55261
|
var reverse_comments = (array) => {
|
|
54593
55262
|
const { length } = array;
|
|
54594
55263
|
let i = 0;
|
|
@@ -54772,7 +55441,7 @@ var require_parse3 = __commonJS({
|
|
|
54772
55441
|
UNDEFINED,
|
|
54773
55442
|
define: define2,
|
|
54774
55443
|
assign_non_prop_comments
|
|
54775
|
-
} =
|
|
55444
|
+
} = require_common2();
|
|
54776
55445
|
var tokenize = (code) => esprima.tokenize(code, {
|
|
54777
55446
|
comment: true,
|
|
54778
55447
|
loc: true
|
|
@@ -55109,7 +55778,7 @@ var require_stringify = __commonJS({
|
|
|
55109
55778
|
COMMA,
|
|
55110
55779
|
EMPTY,
|
|
55111
55780
|
UNDEFINED
|
|
55112
|
-
} =
|
|
55781
|
+
} = require_common2();
|
|
55113
55782
|
var ESCAPABLE = /[\\"\x00-\x1f\x7f-\x9f\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g;
|
|
55114
55783
|
var SPACE = " ";
|
|
55115
55784
|
var LF = "\n";
|
|
@@ -55282,13 +55951,13 @@ var require_stringify = __commonJS({
|
|
|
55282
55951
|
});
|
|
55283
55952
|
|
|
55284
55953
|
// ../../../../node_modules/.pnpm/comment-json@4.2.3/node_modules/comment-json/src/index.js
|
|
55285
|
-
var
|
|
55954
|
+
var require_src3 = __commonJS({
|
|
55286
55955
|
"../../../../node_modules/.pnpm/comment-json@4.2.3/node_modules/comment-json/src/index.js"(exports, module2) {
|
|
55287
55956
|
"use strict";
|
|
55288
55957
|
var { parse: parse3, tokenize } = require_parse3();
|
|
55289
55958
|
var stringify2 = require_stringify();
|
|
55290
55959
|
var { CommentArray } = require_array();
|
|
55291
|
-
var { assign } =
|
|
55960
|
+
var { assign } = require_common2();
|
|
55292
55961
|
module2.exports = {
|
|
55293
55962
|
parse: parse3,
|
|
55294
55963
|
stringify: stringify2,
|
|
@@ -63434,813 +64103,51 @@ var require_lodash6 = __commonJS({
|
|
|
63434
64103
|
var key = lodashFunc.name + "";
|
|
63435
64104
|
if (!hasOwnProperty4.call(realNames, key)) {
|
|
63436
64105
|
realNames[key] = [];
|
|
63437
|
-
}
|
|
63438
|
-
realNames[key].push({ "name": methodName, "func": lodashFunc });
|
|
63439
|
-
}
|
|
63440
|
-
});
|
|
63441
|
-
realNames[createHybrid(undefined2, WRAP_BIND_KEY_FLAG).name] = [{
|
|
63442
|
-
"name": "wrapper",
|
|
63443
|
-
"func": undefined2
|
|
63444
|
-
}];
|
|
63445
|
-
LazyWrapper.prototype.clone = lazyClone;
|
|
63446
|
-
LazyWrapper.prototype.reverse = lazyReverse;
|
|
63447
|
-
LazyWrapper.prototype.value = lazyValue;
|
|
63448
|
-
lodash.prototype.at = wrapperAt;
|
|
63449
|
-
lodash.prototype.chain = wrapperChain;
|
|
63450
|
-
lodash.prototype.commit = wrapperCommit;
|
|
63451
|
-
lodash.prototype.next = wrapperNext;
|
|
63452
|
-
lodash.prototype.plant = wrapperPlant;
|
|
63453
|
-
lodash.prototype.reverse = wrapperReverse;
|
|
63454
|
-
lodash.prototype.toJSON = lodash.prototype.valueOf = lodash.prototype.value = wrapperValue;
|
|
63455
|
-
lodash.prototype.first = lodash.prototype.head;
|
|
63456
|
-
if (symIterator) {
|
|
63457
|
-
lodash.prototype[symIterator] = wrapperToIterator;
|
|
63458
|
-
}
|
|
63459
|
-
return lodash;
|
|
63460
|
-
};
|
|
63461
|
-
var _ = runInContext();
|
|
63462
|
-
if (typeof define == "function" && typeof define.amd == "object" && define.amd) {
|
|
63463
|
-
root._ = _;
|
|
63464
|
-
define(function() {
|
|
63465
|
-
return _;
|
|
63466
|
-
});
|
|
63467
|
-
} else if (freeModule) {
|
|
63468
|
-
(freeModule.exports = _)._ = _;
|
|
63469
|
-
freeExports._ = _;
|
|
63470
|
-
} else {
|
|
63471
|
-
root._ = _;
|
|
63472
|
-
}
|
|
63473
|
-
}).call(exports);
|
|
63474
|
-
}
|
|
63475
|
-
});
|
|
63476
|
-
|
|
63477
|
-
// ../../../../node_modules/.pnpm/@modern-js+utils@2.60.3/node_modules/@modern-js/utils/dist/compiled/lodash/index.js
|
|
63478
|
-
var require_lodash7 = __commonJS({
|
|
63479
|
-
"../../../../node_modules/.pnpm/@modern-js+utils@2.60.3/node_modules/@modern-js/utils/dist/compiled/lodash/index.js"(exports, module2) {
|
|
63480
|
-
"use strict";
|
|
63481
|
-
module2.exports = require_lodash6();
|
|
63482
|
-
}
|
|
63483
|
-
});
|
|
63484
|
-
|
|
63485
|
-
// ../../../../node_modules/.pnpm/ms@2.1.3/node_modules/ms/index.js
|
|
63486
|
-
var require_ms = __commonJS({
|
|
63487
|
-
"../../../../node_modules/.pnpm/ms@2.1.3/node_modules/ms/index.js"(exports, module2) {
|
|
63488
|
-
"use strict";
|
|
63489
|
-
var s = 1e3;
|
|
63490
|
-
var m = s * 60;
|
|
63491
|
-
var h = m * 60;
|
|
63492
|
-
var d = h * 24;
|
|
63493
|
-
var w = d * 7;
|
|
63494
|
-
var y = d * 365.25;
|
|
63495
|
-
module2.exports = function(val, options) {
|
|
63496
|
-
options = options || {};
|
|
63497
|
-
var type = typeof val;
|
|
63498
|
-
if (type === "string" && val.length > 0) {
|
|
63499
|
-
return parse3(val);
|
|
63500
|
-
} else if (type === "number" && isFinite(val)) {
|
|
63501
|
-
return options.long ? fmtLong(val) : fmtShort(val);
|
|
63502
|
-
}
|
|
63503
|
-
throw new Error(
|
|
63504
|
-
"val is not a non-empty string or a valid number. val=" + JSON.stringify(val)
|
|
63505
|
-
);
|
|
63506
|
-
};
|
|
63507
|
-
function parse3(str) {
|
|
63508
|
-
str = String(str);
|
|
63509
|
-
if (str.length > 100) {
|
|
63510
|
-
return;
|
|
63511
|
-
}
|
|
63512
|
-
var match = /^(-?(?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec(
|
|
63513
|
-
str
|
|
63514
|
-
);
|
|
63515
|
-
if (!match) {
|
|
63516
|
-
return;
|
|
63517
|
-
}
|
|
63518
|
-
var n = parseFloat(match[1]);
|
|
63519
|
-
var type = (match[2] || "ms").toLowerCase();
|
|
63520
|
-
switch (type) {
|
|
63521
|
-
case "years":
|
|
63522
|
-
case "year":
|
|
63523
|
-
case "yrs":
|
|
63524
|
-
case "yr":
|
|
63525
|
-
case "y":
|
|
63526
|
-
return n * y;
|
|
63527
|
-
case "weeks":
|
|
63528
|
-
case "week":
|
|
63529
|
-
case "w":
|
|
63530
|
-
return n * w;
|
|
63531
|
-
case "days":
|
|
63532
|
-
case "day":
|
|
63533
|
-
case "d":
|
|
63534
|
-
return n * d;
|
|
63535
|
-
case "hours":
|
|
63536
|
-
case "hour":
|
|
63537
|
-
case "hrs":
|
|
63538
|
-
case "hr":
|
|
63539
|
-
case "h":
|
|
63540
|
-
return n * h;
|
|
63541
|
-
case "minutes":
|
|
63542
|
-
case "minute":
|
|
63543
|
-
case "mins":
|
|
63544
|
-
case "min":
|
|
63545
|
-
case "m":
|
|
63546
|
-
return n * m;
|
|
63547
|
-
case "seconds":
|
|
63548
|
-
case "second":
|
|
63549
|
-
case "secs":
|
|
63550
|
-
case "sec":
|
|
63551
|
-
case "s":
|
|
63552
|
-
return n * s;
|
|
63553
|
-
case "milliseconds":
|
|
63554
|
-
case "millisecond":
|
|
63555
|
-
case "msecs":
|
|
63556
|
-
case "msec":
|
|
63557
|
-
case "ms":
|
|
63558
|
-
return n;
|
|
63559
|
-
default:
|
|
63560
|
-
return void 0;
|
|
63561
|
-
}
|
|
63562
|
-
}
|
|
63563
|
-
function fmtShort(ms) {
|
|
63564
|
-
var msAbs = Math.abs(ms);
|
|
63565
|
-
if (msAbs >= d) {
|
|
63566
|
-
return Math.round(ms / d) + "d";
|
|
63567
|
-
}
|
|
63568
|
-
if (msAbs >= h) {
|
|
63569
|
-
return Math.round(ms / h) + "h";
|
|
63570
|
-
}
|
|
63571
|
-
if (msAbs >= m) {
|
|
63572
|
-
return Math.round(ms / m) + "m";
|
|
63573
|
-
}
|
|
63574
|
-
if (msAbs >= s) {
|
|
63575
|
-
return Math.round(ms / s) + "s";
|
|
63576
|
-
}
|
|
63577
|
-
return ms + "ms";
|
|
63578
|
-
}
|
|
63579
|
-
function fmtLong(ms) {
|
|
63580
|
-
var msAbs = Math.abs(ms);
|
|
63581
|
-
if (msAbs >= d) {
|
|
63582
|
-
return plural(ms, msAbs, d, "day");
|
|
63583
|
-
}
|
|
63584
|
-
if (msAbs >= h) {
|
|
63585
|
-
return plural(ms, msAbs, h, "hour");
|
|
63586
|
-
}
|
|
63587
|
-
if (msAbs >= m) {
|
|
63588
|
-
return plural(ms, msAbs, m, "minute");
|
|
63589
|
-
}
|
|
63590
|
-
if (msAbs >= s) {
|
|
63591
|
-
return plural(ms, msAbs, s, "second");
|
|
63592
|
-
}
|
|
63593
|
-
return ms + " ms";
|
|
63594
|
-
}
|
|
63595
|
-
function plural(ms, msAbs, n, name) {
|
|
63596
|
-
var isPlural = msAbs >= n * 1.5;
|
|
63597
|
-
return Math.round(ms / n) + " " + name + (isPlural ? "s" : "");
|
|
63598
|
-
}
|
|
63599
|
-
}
|
|
63600
|
-
});
|
|
63601
|
-
|
|
63602
|
-
// ../../../../node_modules/.pnpm/debug@4.4.0_supports-color@5.5.0/node_modules/debug/src/common.js
|
|
63603
|
-
var require_common2 = __commonJS({
|
|
63604
|
-
"../../../../node_modules/.pnpm/debug@4.4.0_supports-color@5.5.0/node_modules/debug/src/common.js"(exports, module2) {
|
|
63605
|
-
"use strict";
|
|
63606
|
-
function setup(env) {
|
|
63607
|
-
createDebug.debug = createDebug;
|
|
63608
|
-
createDebug.default = createDebug;
|
|
63609
|
-
createDebug.coerce = coerce;
|
|
63610
|
-
createDebug.disable = disable;
|
|
63611
|
-
createDebug.enable = enable;
|
|
63612
|
-
createDebug.enabled = enabled;
|
|
63613
|
-
createDebug.humanize = require_ms();
|
|
63614
|
-
createDebug.destroy = destroy;
|
|
63615
|
-
Object.keys(env).forEach((key) => {
|
|
63616
|
-
createDebug[key] = env[key];
|
|
63617
|
-
});
|
|
63618
|
-
createDebug.names = [];
|
|
63619
|
-
createDebug.skips = [];
|
|
63620
|
-
createDebug.formatters = {};
|
|
63621
|
-
function selectColor(namespace) {
|
|
63622
|
-
let hash = 0;
|
|
63623
|
-
for (let i = 0; i < namespace.length; i++) {
|
|
63624
|
-
hash = (hash << 5) - hash + namespace.charCodeAt(i);
|
|
63625
|
-
hash |= 0;
|
|
63626
|
-
}
|
|
63627
|
-
return createDebug.colors[Math.abs(hash) % createDebug.colors.length];
|
|
63628
|
-
}
|
|
63629
|
-
createDebug.selectColor = selectColor;
|
|
63630
|
-
function createDebug(namespace) {
|
|
63631
|
-
let prevTime;
|
|
63632
|
-
let enableOverride = null;
|
|
63633
|
-
let namespacesCache;
|
|
63634
|
-
let enabledCache;
|
|
63635
|
-
function debug(...args) {
|
|
63636
|
-
if (!debug.enabled) {
|
|
63637
|
-
return;
|
|
63638
|
-
}
|
|
63639
|
-
const self3 = debug;
|
|
63640
|
-
const curr = Number(/* @__PURE__ */ new Date());
|
|
63641
|
-
const ms = curr - (prevTime || curr);
|
|
63642
|
-
self3.diff = ms;
|
|
63643
|
-
self3.prev = prevTime;
|
|
63644
|
-
self3.curr = curr;
|
|
63645
|
-
prevTime = curr;
|
|
63646
|
-
args[0] = createDebug.coerce(args[0]);
|
|
63647
|
-
if (typeof args[0] !== "string") {
|
|
63648
|
-
args.unshift("%O");
|
|
63649
|
-
}
|
|
63650
|
-
let index = 0;
|
|
63651
|
-
args[0] = args[0].replace(/%([a-zA-Z%])/g, (match, format) => {
|
|
63652
|
-
if (match === "%%") {
|
|
63653
|
-
return "%";
|
|
63654
|
-
}
|
|
63655
|
-
index++;
|
|
63656
|
-
const formatter = createDebug.formatters[format];
|
|
63657
|
-
if (typeof formatter === "function") {
|
|
63658
|
-
const val = args[index];
|
|
63659
|
-
match = formatter.call(self3, val);
|
|
63660
|
-
args.splice(index, 1);
|
|
63661
|
-
index--;
|
|
63662
|
-
}
|
|
63663
|
-
return match;
|
|
63664
|
-
});
|
|
63665
|
-
createDebug.formatArgs.call(self3, args);
|
|
63666
|
-
const logFn = self3.log || createDebug.log;
|
|
63667
|
-
logFn.apply(self3, args);
|
|
63668
|
-
}
|
|
63669
|
-
debug.namespace = namespace;
|
|
63670
|
-
debug.useColors = createDebug.useColors();
|
|
63671
|
-
debug.color = createDebug.selectColor(namespace);
|
|
63672
|
-
debug.extend = extend;
|
|
63673
|
-
debug.destroy = createDebug.destroy;
|
|
63674
|
-
Object.defineProperty(debug, "enabled", {
|
|
63675
|
-
enumerable: true,
|
|
63676
|
-
configurable: false,
|
|
63677
|
-
get: () => {
|
|
63678
|
-
if (enableOverride !== null) {
|
|
63679
|
-
return enableOverride;
|
|
63680
|
-
}
|
|
63681
|
-
if (namespacesCache !== createDebug.namespaces) {
|
|
63682
|
-
namespacesCache = createDebug.namespaces;
|
|
63683
|
-
enabledCache = createDebug.enabled(namespace);
|
|
63684
|
-
}
|
|
63685
|
-
return enabledCache;
|
|
63686
|
-
},
|
|
63687
|
-
set: (v) => {
|
|
63688
|
-
enableOverride = v;
|
|
63689
|
-
}
|
|
63690
|
-
});
|
|
63691
|
-
if (typeof createDebug.init === "function") {
|
|
63692
|
-
createDebug.init(debug);
|
|
63693
|
-
}
|
|
63694
|
-
return debug;
|
|
63695
|
-
}
|
|
63696
|
-
function extend(namespace, delimiter) {
|
|
63697
|
-
const newDebug = createDebug(this.namespace + (typeof delimiter === "undefined" ? ":" : delimiter) + namespace);
|
|
63698
|
-
newDebug.log = this.log;
|
|
63699
|
-
return newDebug;
|
|
63700
|
-
}
|
|
63701
|
-
function enable(namespaces) {
|
|
63702
|
-
createDebug.save(namespaces);
|
|
63703
|
-
createDebug.namespaces = namespaces;
|
|
63704
|
-
createDebug.names = [];
|
|
63705
|
-
createDebug.skips = [];
|
|
63706
|
-
const split = (typeof namespaces === "string" ? namespaces : "").trim().replace(" ", ",").split(",").filter(Boolean);
|
|
63707
|
-
for (const ns of split) {
|
|
63708
|
-
if (ns[0] === "-") {
|
|
63709
|
-
createDebug.skips.push(ns.slice(1));
|
|
63710
|
-
} else {
|
|
63711
|
-
createDebug.names.push(ns);
|
|
63712
|
-
}
|
|
63713
|
-
}
|
|
63714
|
-
}
|
|
63715
|
-
function matchesTemplate(search, template) {
|
|
63716
|
-
let searchIndex = 0;
|
|
63717
|
-
let templateIndex = 0;
|
|
63718
|
-
let starIndex = -1;
|
|
63719
|
-
let matchIndex = 0;
|
|
63720
|
-
while (searchIndex < search.length) {
|
|
63721
|
-
if (templateIndex < template.length && (template[templateIndex] === search[searchIndex] || template[templateIndex] === "*")) {
|
|
63722
|
-
if (template[templateIndex] === "*") {
|
|
63723
|
-
starIndex = templateIndex;
|
|
63724
|
-
matchIndex = searchIndex;
|
|
63725
|
-
templateIndex++;
|
|
63726
|
-
} else {
|
|
63727
|
-
searchIndex++;
|
|
63728
|
-
templateIndex++;
|
|
63729
|
-
}
|
|
63730
|
-
} else if (starIndex !== -1) {
|
|
63731
|
-
templateIndex = starIndex + 1;
|
|
63732
|
-
matchIndex++;
|
|
63733
|
-
searchIndex = matchIndex;
|
|
63734
|
-
} else {
|
|
63735
|
-
return false;
|
|
63736
|
-
}
|
|
63737
|
-
}
|
|
63738
|
-
while (templateIndex < template.length && template[templateIndex] === "*") {
|
|
63739
|
-
templateIndex++;
|
|
63740
|
-
}
|
|
63741
|
-
return templateIndex === template.length;
|
|
63742
|
-
}
|
|
63743
|
-
function disable() {
|
|
63744
|
-
const namespaces = [
|
|
63745
|
-
...createDebug.names,
|
|
63746
|
-
...createDebug.skips.map((namespace) => "-" + namespace)
|
|
63747
|
-
].join(",");
|
|
63748
|
-
createDebug.enable("");
|
|
63749
|
-
return namespaces;
|
|
63750
|
-
}
|
|
63751
|
-
function enabled(name) {
|
|
63752
|
-
for (const skip of createDebug.skips) {
|
|
63753
|
-
if (matchesTemplate(name, skip)) {
|
|
63754
|
-
return false;
|
|
63755
|
-
}
|
|
63756
|
-
}
|
|
63757
|
-
for (const ns of createDebug.names) {
|
|
63758
|
-
if (matchesTemplate(name, ns)) {
|
|
63759
|
-
return true;
|
|
64106
|
+
}
|
|
64107
|
+
realNames[key].push({ "name": methodName, "func": lodashFunc });
|
|
63760
64108
|
}
|
|
64109
|
+
});
|
|
64110
|
+
realNames[createHybrid(undefined2, WRAP_BIND_KEY_FLAG).name] = [{
|
|
64111
|
+
"name": "wrapper",
|
|
64112
|
+
"func": undefined2
|
|
64113
|
+
}];
|
|
64114
|
+
LazyWrapper.prototype.clone = lazyClone;
|
|
64115
|
+
LazyWrapper.prototype.reverse = lazyReverse;
|
|
64116
|
+
LazyWrapper.prototype.value = lazyValue;
|
|
64117
|
+
lodash.prototype.at = wrapperAt;
|
|
64118
|
+
lodash.prototype.chain = wrapperChain;
|
|
64119
|
+
lodash.prototype.commit = wrapperCommit;
|
|
64120
|
+
lodash.prototype.next = wrapperNext;
|
|
64121
|
+
lodash.prototype.plant = wrapperPlant;
|
|
64122
|
+
lodash.prototype.reverse = wrapperReverse;
|
|
64123
|
+
lodash.prototype.toJSON = lodash.prototype.valueOf = lodash.prototype.value = wrapperValue;
|
|
64124
|
+
lodash.prototype.first = lodash.prototype.head;
|
|
64125
|
+
if (symIterator) {
|
|
64126
|
+
lodash.prototype[symIterator] = wrapperToIterator;
|
|
63761
64127
|
}
|
|
63762
|
-
return
|
|
63763
|
-
}
|
|
63764
|
-
function coerce(val) {
|
|
63765
|
-
if (val instanceof Error) {
|
|
63766
|
-
return val.stack || val.message;
|
|
63767
|
-
}
|
|
63768
|
-
return val;
|
|
63769
|
-
}
|
|
63770
|
-
function destroy() {
|
|
63771
|
-
console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.");
|
|
63772
|
-
}
|
|
63773
|
-
createDebug.enable(createDebug.load());
|
|
63774
|
-
return createDebug;
|
|
63775
|
-
}
|
|
63776
|
-
module2.exports = setup;
|
|
63777
|
-
}
|
|
63778
|
-
});
|
|
63779
|
-
|
|
63780
|
-
// ../../../../node_modules/.pnpm/debug@4.4.0_supports-color@5.5.0/node_modules/debug/src/browser.js
|
|
63781
|
-
var require_browser = __commonJS({
|
|
63782
|
-
"../../../../node_modules/.pnpm/debug@4.4.0_supports-color@5.5.0/node_modules/debug/src/browser.js"(exports, module2) {
|
|
63783
|
-
"use strict";
|
|
63784
|
-
exports.formatArgs = formatArgs;
|
|
63785
|
-
exports.save = save;
|
|
63786
|
-
exports.load = load;
|
|
63787
|
-
exports.useColors = useColors;
|
|
63788
|
-
exports.storage = localstorage();
|
|
63789
|
-
exports.destroy = (() => {
|
|
63790
|
-
let warned = false;
|
|
63791
|
-
return () => {
|
|
63792
|
-
if (!warned) {
|
|
63793
|
-
warned = true;
|
|
63794
|
-
console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.");
|
|
63795
|
-
}
|
|
63796
|
-
};
|
|
63797
|
-
})();
|
|
63798
|
-
exports.colors = [
|
|
63799
|
-
"#0000CC",
|
|
63800
|
-
"#0000FF",
|
|
63801
|
-
"#0033CC",
|
|
63802
|
-
"#0033FF",
|
|
63803
|
-
"#0066CC",
|
|
63804
|
-
"#0066FF",
|
|
63805
|
-
"#0099CC",
|
|
63806
|
-
"#0099FF",
|
|
63807
|
-
"#00CC00",
|
|
63808
|
-
"#00CC33",
|
|
63809
|
-
"#00CC66",
|
|
63810
|
-
"#00CC99",
|
|
63811
|
-
"#00CCCC",
|
|
63812
|
-
"#00CCFF",
|
|
63813
|
-
"#3300CC",
|
|
63814
|
-
"#3300FF",
|
|
63815
|
-
"#3333CC",
|
|
63816
|
-
"#3333FF",
|
|
63817
|
-
"#3366CC",
|
|
63818
|
-
"#3366FF",
|
|
63819
|
-
"#3399CC",
|
|
63820
|
-
"#3399FF",
|
|
63821
|
-
"#33CC00",
|
|
63822
|
-
"#33CC33",
|
|
63823
|
-
"#33CC66",
|
|
63824
|
-
"#33CC99",
|
|
63825
|
-
"#33CCCC",
|
|
63826
|
-
"#33CCFF",
|
|
63827
|
-
"#6600CC",
|
|
63828
|
-
"#6600FF",
|
|
63829
|
-
"#6633CC",
|
|
63830
|
-
"#6633FF",
|
|
63831
|
-
"#66CC00",
|
|
63832
|
-
"#66CC33",
|
|
63833
|
-
"#9900CC",
|
|
63834
|
-
"#9900FF",
|
|
63835
|
-
"#9933CC",
|
|
63836
|
-
"#9933FF",
|
|
63837
|
-
"#99CC00",
|
|
63838
|
-
"#99CC33",
|
|
63839
|
-
"#CC0000",
|
|
63840
|
-
"#CC0033",
|
|
63841
|
-
"#CC0066",
|
|
63842
|
-
"#CC0099",
|
|
63843
|
-
"#CC00CC",
|
|
63844
|
-
"#CC00FF",
|
|
63845
|
-
"#CC3300",
|
|
63846
|
-
"#CC3333",
|
|
63847
|
-
"#CC3366",
|
|
63848
|
-
"#CC3399",
|
|
63849
|
-
"#CC33CC",
|
|
63850
|
-
"#CC33FF",
|
|
63851
|
-
"#CC6600",
|
|
63852
|
-
"#CC6633",
|
|
63853
|
-
"#CC9900",
|
|
63854
|
-
"#CC9933",
|
|
63855
|
-
"#CCCC00",
|
|
63856
|
-
"#CCCC33",
|
|
63857
|
-
"#FF0000",
|
|
63858
|
-
"#FF0033",
|
|
63859
|
-
"#FF0066",
|
|
63860
|
-
"#FF0099",
|
|
63861
|
-
"#FF00CC",
|
|
63862
|
-
"#FF00FF",
|
|
63863
|
-
"#FF3300",
|
|
63864
|
-
"#FF3333",
|
|
63865
|
-
"#FF3366",
|
|
63866
|
-
"#FF3399",
|
|
63867
|
-
"#FF33CC",
|
|
63868
|
-
"#FF33FF",
|
|
63869
|
-
"#FF6600",
|
|
63870
|
-
"#FF6633",
|
|
63871
|
-
"#FF9900",
|
|
63872
|
-
"#FF9933",
|
|
63873
|
-
"#FFCC00",
|
|
63874
|
-
"#FFCC33"
|
|
63875
|
-
];
|
|
63876
|
-
function useColors() {
|
|
63877
|
-
if (typeof window !== "undefined" && window.process && (window.process.type === "renderer" || window.process.__nwjs)) {
|
|
63878
|
-
return true;
|
|
63879
|
-
}
|
|
63880
|
-
if (typeof navigator !== "undefined" && navigator.userAgent && navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/)) {
|
|
63881
|
-
return false;
|
|
63882
|
-
}
|
|
63883
|
-
let m;
|
|
63884
|
-
return typeof document !== "undefined" && document.documentElement && document.documentElement.style && document.documentElement.style.WebkitAppearance || // Is firebug? http://stackoverflow.com/a/398120/376773
|
|
63885
|
-
typeof window !== "undefined" && window.console && (window.console.firebug || window.console.exception && window.console.table) || // Is firefox >= v31?
|
|
63886
|
-
// https://developer.mozilla.org/en-US/docs/Tools/Web_Console#Styling_messages
|
|
63887
|
-
typeof navigator !== "undefined" && navigator.userAgent && (m = navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/)) && parseInt(m[1], 10) >= 31 || // Double check webkit in userAgent just in case we are in a worker
|
|
63888
|
-
typeof navigator !== "undefined" && navigator.userAgent && navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/);
|
|
63889
|
-
}
|
|
63890
|
-
function formatArgs(args) {
|
|
63891
|
-
args[0] = (this.useColors ? "%c" : "") + this.namespace + (this.useColors ? " %c" : " ") + args[0] + (this.useColors ? "%c " : " ") + "+" + module2.exports.humanize(this.diff);
|
|
63892
|
-
if (!this.useColors) {
|
|
63893
|
-
return;
|
|
63894
|
-
}
|
|
63895
|
-
const c = "color: " + this.color;
|
|
63896
|
-
args.splice(1, 0, c, "color: inherit");
|
|
63897
|
-
let index = 0;
|
|
63898
|
-
let lastC = 0;
|
|
63899
|
-
args[0].replace(/%[a-zA-Z%]/g, (match) => {
|
|
63900
|
-
if (match === "%%") {
|
|
63901
|
-
return;
|
|
63902
|
-
}
|
|
63903
|
-
index++;
|
|
63904
|
-
if (match === "%c") {
|
|
63905
|
-
lastC = index;
|
|
63906
|
-
}
|
|
63907
|
-
});
|
|
63908
|
-
args.splice(lastC, 0, c);
|
|
63909
|
-
}
|
|
63910
|
-
exports.log = console.debug || console.log || (() => {
|
|
63911
|
-
});
|
|
63912
|
-
function save(namespaces) {
|
|
63913
|
-
try {
|
|
63914
|
-
if (namespaces) {
|
|
63915
|
-
exports.storage.setItem("debug", namespaces);
|
|
63916
|
-
} else {
|
|
63917
|
-
exports.storage.removeItem("debug");
|
|
63918
|
-
}
|
|
63919
|
-
} catch (error) {
|
|
63920
|
-
}
|
|
63921
|
-
}
|
|
63922
|
-
function load() {
|
|
63923
|
-
let r;
|
|
63924
|
-
try {
|
|
63925
|
-
r = exports.storage.getItem("debug");
|
|
63926
|
-
} catch (error) {
|
|
63927
|
-
}
|
|
63928
|
-
if (!r && typeof process !== "undefined" && "env" in process) {
|
|
63929
|
-
r = process.env.DEBUG;
|
|
63930
|
-
}
|
|
63931
|
-
return r;
|
|
63932
|
-
}
|
|
63933
|
-
function localstorage() {
|
|
63934
|
-
try {
|
|
63935
|
-
return localStorage;
|
|
63936
|
-
} catch (error) {
|
|
63937
|
-
}
|
|
63938
|
-
}
|
|
63939
|
-
module2.exports = require_common2()(exports);
|
|
63940
|
-
var { formatters } = module2.exports;
|
|
63941
|
-
formatters.j = function(v) {
|
|
63942
|
-
try {
|
|
63943
|
-
return JSON.stringify(v);
|
|
63944
|
-
} catch (error) {
|
|
63945
|
-
return "[UnexpectedJSONParseError]: " + error.message;
|
|
63946
|
-
}
|
|
63947
|
-
};
|
|
63948
|
-
}
|
|
63949
|
-
});
|
|
63950
|
-
|
|
63951
|
-
// ../../../../node_modules/.pnpm/has-flag@3.0.0/node_modules/has-flag/index.js
|
|
63952
|
-
var require_has_flag2 = __commonJS({
|
|
63953
|
-
"../../../../node_modules/.pnpm/has-flag@3.0.0/node_modules/has-flag/index.js"(exports, module2) {
|
|
63954
|
-
"use strict";
|
|
63955
|
-
module2.exports = (flag, argv) => {
|
|
63956
|
-
argv = argv || process.argv;
|
|
63957
|
-
const prefix = flag.startsWith("-") ? "" : flag.length === 1 ? "-" : "--";
|
|
63958
|
-
const pos = argv.indexOf(prefix + flag);
|
|
63959
|
-
const terminatorPos = argv.indexOf("--");
|
|
63960
|
-
return pos !== -1 && (terminatorPos === -1 ? true : pos < terminatorPos);
|
|
63961
|
-
};
|
|
63962
|
-
}
|
|
63963
|
-
});
|
|
63964
|
-
|
|
63965
|
-
// ../../../../node_modules/.pnpm/supports-color@5.5.0/node_modules/supports-color/index.js
|
|
63966
|
-
var require_supports_color2 = __commonJS({
|
|
63967
|
-
"../../../../node_modules/.pnpm/supports-color@5.5.0/node_modules/supports-color/index.js"(exports, module2) {
|
|
63968
|
-
"use strict";
|
|
63969
|
-
var os = require("os");
|
|
63970
|
-
var hasFlag = require_has_flag2();
|
|
63971
|
-
var env = process.env;
|
|
63972
|
-
var forceColor;
|
|
63973
|
-
if (hasFlag("no-color") || hasFlag("no-colors") || hasFlag("color=false")) {
|
|
63974
|
-
forceColor = false;
|
|
63975
|
-
} else if (hasFlag("color") || hasFlag("colors") || hasFlag("color=true") || hasFlag("color=always")) {
|
|
63976
|
-
forceColor = true;
|
|
63977
|
-
}
|
|
63978
|
-
if ("FORCE_COLOR" in env) {
|
|
63979
|
-
forceColor = env.FORCE_COLOR.length === 0 || parseInt(env.FORCE_COLOR, 10) !== 0;
|
|
63980
|
-
}
|
|
63981
|
-
function translateLevel(level) {
|
|
63982
|
-
if (level === 0) {
|
|
63983
|
-
return false;
|
|
63984
|
-
}
|
|
63985
|
-
return {
|
|
63986
|
-
level,
|
|
63987
|
-
hasBasic: true,
|
|
63988
|
-
has256: level >= 2,
|
|
63989
|
-
has16m: level >= 3
|
|
64128
|
+
return lodash;
|
|
63990
64129
|
};
|
|
63991
|
-
|
|
63992
|
-
|
|
63993
|
-
|
|
63994
|
-
|
|
63995
|
-
|
|
63996
|
-
|
|
63997
|
-
|
|
63998
|
-
|
|
63999
|
-
|
|
64000
|
-
return 2;
|
|
64001
|
-
}
|
|
64002
|
-
if (stream && !stream.isTTY && forceColor !== true) {
|
|
64003
|
-
return 0;
|
|
64004
|
-
}
|
|
64005
|
-
const min = forceColor ? 1 : 0;
|
|
64006
|
-
if (process.platform === "win32") {
|
|
64007
|
-
const osRelease = os.release().split(".");
|
|
64008
|
-
if (Number(process.versions.node.split(".")[0]) >= 8 && Number(osRelease[0]) >= 10 && Number(osRelease[2]) >= 10586) {
|
|
64009
|
-
return Number(osRelease[2]) >= 14931 ? 3 : 2;
|
|
64010
|
-
}
|
|
64011
|
-
return 1;
|
|
64012
|
-
}
|
|
64013
|
-
if ("CI" in env) {
|
|
64014
|
-
if (["TRAVIS", "CIRCLECI", "APPVEYOR", "GITLAB_CI"].some((sign) => sign in env) || env.CI_NAME === "codeship") {
|
|
64015
|
-
return 1;
|
|
64016
|
-
}
|
|
64017
|
-
return min;
|
|
64018
|
-
}
|
|
64019
|
-
if ("TEAMCITY_VERSION" in env) {
|
|
64020
|
-
return /^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(env.TEAMCITY_VERSION) ? 1 : 0;
|
|
64021
|
-
}
|
|
64022
|
-
if (env.COLORTERM === "truecolor") {
|
|
64023
|
-
return 3;
|
|
64024
|
-
}
|
|
64025
|
-
if ("TERM_PROGRAM" in env) {
|
|
64026
|
-
const version = parseInt((env.TERM_PROGRAM_VERSION || "").split(".")[0], 10);
|
|
64027
|
-
switch (env.TERM_PROGRAM) {
|
|
64028
|
-
case "iTerm.app":
|
|
64029
|
-
return version >= 3 ? 3 : 2;
|
|
64030
|
-
case "Apple_Terminal":
|
|
64031
|
-
return 2;
|
|
64032
|
-
}
|
|
64033
|
-
}
|
|
64034
|
-
if (/-256(color)?$/i.test(env.TERM)) {
|
|
64035
|
-
return 2;
|
|
64036
|
-
}
|
|
64037
|
-
if (/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(env.TERM)) {
|
|
64038
|
-
return 1;
|
|
64039
|
-
}
|
|
64040
|
-
if ("COLORTERM" in env) {
|
|
64041
|
-
return 1;
|
|
64042
|
-
}
|
|
64043
|
-
if (env.TERM === "dumb") {
|
|
64044
|
-
return min;
|
|
64045
|
-
}
|
|
64046
|
-
return min;
|
|
64047
|
-
}
|
|
64048
|
-
function getSupportLevel(stream) {
|
|
64049
|
-
const level = supportsColor(stream);
|
|
64050
|
-
return translateLevel(level);
|
|
64051
|
-
}
|
|
64052
|
-
module2.exports = {
|
|
64053
|
-
supportsColor: getSupportLevel,
|
|
64054
|
-
stdout: getSupportLevel(process.stdout),
|
|
64055
|
-
stderr: getSupportLevel(process.stderr)
|
|
64056
|
-
};
|
|
64057
|
-
}
|
|
64058
|
-
});
|
|
64059
|
-
|
|
64060
|
-
// ../../../../node_modules/.pnpm/debug@4.4.0_supports-color@5.5.0/node_modules/debug/src/node.js
|
|
64061
|
-
var require_node2 = __commonJS({
|
|
64062
|
-
"../../../../node_modules/.pnpm/debug@4.4.0_supports-color@5.5.0/node_modules/debug/src/node.js"(exports, module2) {
|
|
64063
|
-
"use strict";
|
|
64064
|
-
var tty = require("tty");
|
|
64065
|
-
var util = require("util");
|
|
64066
|
-
exports.init = init;
|
|
64067
|
-
exports.log = log;
|
|
64068
|
-
exports.formatArgs = formatArgs;
|
|
64069
|
-
exports.save = save;
|
|
64070
|
-
exports.load = load;
|
|
64071
|
-
exports.useColors = useColors;
|
|
64072
|
-
exports.destroy = util.deprecate(
|
|
64073
|
-
() => {
|
|
64074
|
-
},
|
|
64075
|
-
"Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`."
|
|
64076
|
-
);
|
|
64077
|
-
exports.colors = [6, 2, 3, 4, 5, 1];
|
|
64078
|
-
try {
|
|
64079
|
-
const supportsColor = require_supports_color2();
|
|
64080
|
-
if (supportsColor && (supportsColor.stderr || supportsColor).level >= 2) {
|
|
64081
|
-
exports.colors = [
|
|
64082
|
-
20,
|
|
64083
|
-
21,
|
|
64084
|
-
26,
|
|
64085
|
-
27,
|
|
64086
|
-
32,
|
|
64087
|
-
33,
|
|
64088
|
-
38,
|
|
64089
|
-
39,
|
|
64090
|
-
40,
|
|
64091
|
-
41,
|
|
64092
|
-
42,
|
|
64093
|
-
43,
|
|
64094
|
-
44,
|
|
64095
|
-
45,
|
|
64096
|
-
56,
|
|
64097
|
-
57,
|
|
64098
|
-
62,
|
|
64099
|
-
63,
|
|
64100
|
-
68,
|
|
64101
|
-
69,
|
|
64102
|
-
74,
|
|
64103
|
-
75,
|
|
64104
|
-
76,
|
|
64105
|
-
77,
|
|
64106
|
-
78,
|
|
64107
|
-
79,
|
|
64108
|
-
80,
|
|
64109
|
-
81,
|
|
64110
|
-
92,
|
|
64111
|
-
93,
|
|
64112
|
-
98,
|
|
64113
|
-
99,
|
|
64114
|
-
112,
|
|
64115
|
-
113,
|
|
64116
|
-
128,
|
|
64117
|
-
129,
|
|
64118
|
-
134,
|
|
64119
|
-
135,
|
|
64120
|
-
148,
|
|
64121
|
-
149,
|
|
64122
|
-
160,
|
|
64123
|
-
161,
|
|
64124
|
-
162,
|
|
64125
|
-
163,
|
|
64126
|
-
164,
|
|
64127
|
-
165,
|
|
64128
|
-
166,
|
|
64129
|
-
167,
|
|
64130
|
-
168,
|
|
64131
|
-
169,
|
|
64132
|
-
170,
|
|
64133
|
-
171,
|
|
64134
|
-
172,
|
|
64135
|
-
173,
|
|
64136
|
-
178,
|
|
64137
|
-
179,
|
|
64138
|
-
184,
|
|
64139
|
-
185,
|
|
64140
|
-
196,
|
|
64141
|
-
197,
|
|
64142
|
-
198,
|
|
64143
|
-
199,
|
|
64144
|
-
200,
|
|
64145
|
-
201,
|
|
64146
|
-
202,
|
|
64147
|
-
203,
|
|
64148
|
-
204,
|
|
64149
|
-
205,
|
|
64150
|
-
206,
|
|
64151
|
-
207,
|
|
64152
|
-
208,
|
|
64153
|
-
209,
|
|
64154
|
-
214,
|
|
64155
|
-
215,
|
|
64156
|
-
220,
|
|
64157
|
-
221
|
|
64158
|
-
];
|
|
64159
|
-
}
|
|
64160
|
-
} catch (error) {
|
|
64161
|
-
}
|
|
64162
|
-
exports.inspectOpts = Object.keys(process.env).filter((key) => {
|
|
64163
|
-
return /^debug_/i.test(key);
|
|
64164
|
-
}).reduce((obj, key) => {
|
|
64165
|
-
const prop = key.substring(6).toLowerCase().replace(/_([a-z])/g, (_, k) => {
|
|
64166
|
-
return k.toUpperCase();
|
|
64167
|
-
});
|
|
64168
|
-
let val = process.env[key];
|
|
64169
|
-
if (/^(yes|on|true|enabled)$/i.test(val)) {
|
|
64170
|
-
val = true;
|
|
64171
|
-
} else if (/^(no|off|false|disabled)$/i.test(val)) {
|
|
64172
|
-
val = false;
|
|
64173
|
-
} else if (val === "null") {
|
|
64174
|
-
val = null;
|
|
64175
|
-
} else {
|
|
64176
|
-
val = Number(val);
|
|
64177
|
-
}
|
|
64178
|
-
obj[prop] = val;
|
|
64179
|
-
return obj;
|
|
64180
|
-
}, {});
|
|
64181
|
-
function useColors() {
|
|
64182
|
-
return "colors" in exports.inspectOpts ? Boolean(exports.inspectOpts.colors) : tty.isatty(process.stderr.fd);
|
|
64183
|
-
}
|
|
64184
|
-
function formatArgs(args) {
|
|
64185
|
-
const { namespace: name, useColors: useColors2 } = this;
|
|
64186
|
-
if (useColors2) {
|
|
64187
|
-
const c = this.color;
|
|
64188
|
-
const colorCode = "\x1B[3" + (c < 8 ? c : "8;5;" + c);
|
|
64189
|
-
const prefix = ` ${colorCode};1m${name} \x1B[0m`;
|
|
64190
|
-
args[0] = prefix + args[0].split("\n").join("\n" + prefix);
|
|
64191
|
-
args.push(colorCode + "m+" + module2.exports.humanize(this.diff) + "\x1B[0m");
|
|
64192
|
-
} else {
|
|
64193
|
-
args[0] = getDate() + name + " " + args[0];
|
|
64194
|
-
}
|
|
64195
|
-
}
|
|
64196
|
-
function getDate() {
|
|
64197
|
-
if (exports.inspectOpts.hideDate) {
|
|
64198
|
-
return "";
|
|
64199
|
-
}
|
|
64200
|
-
return (/* @__PURE__ */ new Date()).toISOString() + " ";
|
|
64201
|
-
}
|
|
64202
|
-
function log(...args) {
|
|
64203
|
-
return process.stderr.write(util.formatWithOptions(exports.inspectOpts, ...args) + "\n");
|
|
64204
|
-
}
|
|
64205
|
-
function save(namespaces) {
|
|
64206
|
-
if (namespaces) {
|
|
64207
|
-
process.env.DEBUG = namespaces;
|
|
64130
|
+
var _ = runInContext();
|
|
64131
|
+
if (typeof define == "function" && typeof define.amd == "object" && define.amd) {
|
|
64132
|
+
root._ = _;
|
|
64133
|
+
define(function() {
|
|
64134
|
+
return _;
|
|
64135
|
+
});
|
|
64136
|
+
} else if (freeModule) {
|
|
64137
|
+
(freeModule.exports = _)._ = _;
|
|
64138
|
+
freeExports._ = _;
|
|
64208
64139
|
} else {
|
|
64209
|
-
|
|
64210
|
-
}
|
|
64211
|
-
}
|
|
64212
|
-
function load() {
|
|
64213
|
-
return process.env.DEBUG;
|
|
64214
|
-
}
|
|
64215
|
-
function init(debug) {
|
|
64216
|
-
debug.inspectOpts = {};
|
|
64217
|
-
const keys = Object.keys(exports.inspectOpts);
|
|
64218
|
-
for (let i = 0; i < keys.length; i++) {
|
|
64219
|
-
debug.inspectOpts[keys[i]] = exports.inspectOpts[keys[i]];
|
|
64140
|
+
root._ = _;
|
|
64220
64141
|
}
|
|
64221
|
-
}
|
|
64222
|
-
module2.exports = require_common2()(exports);
|
|
64223
|
-
var { formatters } = module2.exports;
|
|
64224
|
-
formatters.o = function(v) {
|
|
64225
|
-
this.inspectOpts.colors = this.useColors;
|
|
64226
|
-
return util.inspect(v, this.inspectOpts).split("\n").map((str) => str.trim()).join(" ");
|
|
64227
|
-
};
|
|
64228
|
-
formatters.O = function(v) {
|
|
64229
|
-
this.inspectOpts.colors = this.useColors;
|
|
64230
|
-
return util.inspect(v, this.inspectOpts);
|
|
64231
|
-
};
|
|
64142
|
+
}).call(exports);
|
|
64232
64143
|
}
|
|
64233
64144
|
});
|
|
64234
64145
|
|
|
64235
|
-
// ../../../../node_modules/.pnpm
|
|
64236
|
-
var
|
|
64237
|
-
"../../../../node_modules/.pnpm
|
|
64146
|
+
// ../../../../node_modules/.pnpm/@modern-js+utils@2.60.3/node_modules/@modern-js/utils/dist/compiled/lodash/index.js
|
|
64147
|
+
var require_lodash7 = __commonJS({
|
|
64148
|
+
"../../../../node_modules/.pnpm/@modern-js+utils@2.60.3/node_modules/@modern-js/utils/dist/compiled/lodash/index.js"(exports, module2) {
|
|
64238
64149
|
"use strict";
|
|
64239
|
-
|
|
64240
|
-
module2.exports = require_browser();
|
|
64241
|
-
} else {
|
|
64242
|
-
module2.exports = require_node2();
|
|
64243
|
-
}
|
|
64150
|
+
module2.exports = require_lodash6();
|
|
64244
64151
|
}
|
|
64245
64152
|
});
|
|
64246
64153
|
|
|
@@ -64396,7 +64303,7 @@ var require_filter3 = __commonJS({
|
|
|
64396
64303
|
return r;
|
|
64397
64304
|
};
|
|
64398
64305
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
64399
|
-
var debug_1 =
|
|
64306
|
+
var debug_1 = require_src();
|
|
64400
64307
|
var mongo_eql_1 = require_mongo_eql();
|
|
64401
64308
|
var ops = require_ops();
|
|
64402
64309
|
var get_type_1 = require_get_type();
|
|
@@ -64556,7 +64463,7 @@ var require_mods = __commonJS({
|
|
|
64556
64463
|
return r;
|
|
64557
64464
|
};
|
|
64558
64465
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
64559
|
-
var debug_1 =
|
|
64466
|
+
var debug_1 = require_src();
|
|
64560
64467
|
var mongoDot = require_mongo_dot();
|
|
64561
64468
|
var mongo_eql_1 = require_mongo_eql();
|
|
64562
64469
|
var get_type_1 = require_get_type();
|
|
@@ -65017,7 +64924,7 @@ var require_query = __commonJS({
|
|
|
65017
64924
|
"../../../../node_modules/.pnpm/declaration-update@0.0.2/node_modules/declaration-update/dist/query.js"(exports) {
|
|
65018
64925
|
"use strict";
|
|
65019
64926
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
65020
|
-
var debug_1 =
|
|
64927
|
+
var debug_1 = require_src();
|
|
65021
64928
|
var filter_1 = require_filter3();
|
|
65022
64929
|
var mods = require_mods();
|
|
65023
64930
|
var mongoDot = require_mongo_dot();
|
|
@@ -65116,16 +65023,16 @@ __export(src_exports, {
|
|
|
65116
65023
|
module.exports = __toCommonJS(src_exports);
|
|
65117
65024
|
var import_path5 = __toESM(require("path"));
|
|
65118
65025
|
|
|
65119
|
-
// ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.
|
|
65026
|
+
// ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.6/node_modules/@modern-js/codesmith-utils/dist/esm/chalk.js
|
|
65120
65027
|
var import_chalk = __toESM(require_source());
|
|
65121
65028
|
|
|
65122
|
-
// ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.
|
|
65029
|
+
// ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.6/node_modules/@modern-js/codesmith-utils/dist/esm/fs-extra.js
|
|
65123
65030
|
var import_fs_extra = __toESM(require_lib());
|
|
65124
65031
|
|
|
65125
|
-
// ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.
|
|
65032
|
+
// ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith/dist/esm-node/materials/FsResource.js
|
|
65126
65033
|
var FS_RESOURCE = "_codesmith_core_fs_resource";
|
|
65127
65034
|
|
|
65128
|
-
// ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.
|
|
65035
|
+
// ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith/dist/esm-node/utils/fsExists.js
|
|
65129
65036
|
function fsExists(path5) {
|
|
65130
65037
|
return __async(this, null, function* () {
|
|
65131
65038
|
try {
|
|
@@ -65137,19 +65044,19 @@ function fsExists(path5) {
|
|
|
65137
65044
|
});
|
|
65138
65045
|
}
|
|
65139
65046
|
|
|
65140
|
-
// ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.
|
|
65047
|
+
// ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.6/node_modules/@modern-js/codesmith-utils/dist/esm/execa.js
|
|
65141
65048
|
var import_execa = __toESM(require_execa());
|
|
65142
65049
|
|
|
65143
|
-
// ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.
|
|
65050
|
+
// ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.6/node_modules/@modern-js/codesmith-utils/dist/esm/semver.js
|
|
65144
65051
|
var import_semver = __toESM(require_semver2());
|
|
65145
65052
|
|
|
65146
|
-
// ../../../../node_modules/.pnpm/@modern-js+codesmith-api-ejs@2.6.
|
|
65053
|
+
// ../../../../node_modules/.pnpm/@modern-js+codesmith-api-ejs@2.6.6_@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith-api-ejs/dist/esm-node/utils/renderString.js
|
|
65147
65054
|
var import_ejs = __toESM(require_ejs());
|
|
65148
65055
|
function renderString(template, fullData) {
|
|
65149
65056
|
return import_ejs.default.render(template, fullData) || "";
|
|
65150
65057
|
}
|
|
65151
65058
|
|
|
65152
|
-
// ../../../../node_modules/.pnpm/@modern-js+codesmith-api-ejs@2.6.
|
|
65059
|
+
// ../../../../node_modules/.pnpm/@modern-js+codesmith-api-ejs@2.6.6_@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith-api-ejs/dist/esm-node/index.js
|
|
65153
65060
|
var EjsAPI = class {
|
|
65154
65061
|
renderTemplate(_0, _1) {
|
|
65155
65062
|
return __async(this, arguments, function* (templateResource, target, parameters = {}) {
|
|
@@ -65184,7 +65091,7 @@ var EjsAPI = class {
|
|
|
65184
65091
|
}
|
|
65185
65092
|
};
|
|
65186
65093
|
|
|
65187
|
-
// ../../../../node_modules/.pnpm/@modern-js+codesmith-api-fs@2.6.
|
|
65094
|
+
// ../../../../node_modules/.pnpm/@modern-js+codesmith-api-fs@2.6.6_@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith-api-fs/dist/esm-node/index.js
|
|
65188
65095
|
var import_path = __toESM(require("path"));
|
|
65189
65096
|
var FsAPI = class {
|
|
65190
65097
|
renderFile(resource, target) {
|
|
@@ -65213,7 +65120,7 @@ var FsAPI = class {
|
|
|
65213
65120
|
}
|
|
65214
65121
|
};
|
|
65215
65122
|
|
|
65216
|
-
// ../../../../node_modules/.pnpm/@modern-js+codesmith-api-git@2.6.
|
|
65123
|
+
// ../../../../node_modules/.pnpm/@modern-js+codesmith-api-git@2.6.6_@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith-api-git/dist/esm-node/utils/index.js
|
|
65217
65124
|
function canUseGit() {
|
|
65218
65125
|
return __async(this, null, function* () {
|
|
65219
65126
|
try {
|
|
@@ -65297,7 +65204,7 @@ function gitCommit(cwd, commitMessage) {
|
|
|
65297
65204
|
});
|
|
65298
65205
|
}
|
|
65299
65206
|
|
|
65300
|
-
// ../../../../node_modules/.pnpm/@modern-js+codesmith-api-git@2.6.
|
|
65207
|
+
// ../../../../node_modules/.pnpm/@modern-js+codesmith-api-git@2.6.6_@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith-api-git/dist/esm-node/index.js
|
|
65301
65208
|
var GitAPI = class {
|
|
65302
65209
|
isInGitRepo() {
|
|
65303
65210
|
return __async(this, arguments, function* (cwd = this.generatorCore.outputPath) {
|
|
@@ -65353,7 +65260,7 @@ var GitAPI = class {
|
|
|
65353
65260
|
}
|
|
65354
65261
|
};
|
|
65355
65262
|
|
|
65356
|
-
// ../../../../node_modules/.pnpm/@modern-js+codesmith-api-handlebars@2.6.
|
|
65263
|
+
// ../../../../node_modules/.pnpm/@modern-js+codesmith-api-handlebars@2.6.6_@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith-api-handlebars/dist/esm-node/utils/renderString.js
|
|
65357
65264
|
var import_handlebars = __toESM(require_lib2());
|
|
65358
65265
|
function renderString2(template, fullData, registers) {
|
|
65359
65266
|
const helpers = __spreadValues({}, registers === null || registers === void 0 ? void 0 : registers.helpers);
|
|
@@ -65363,7 +65270,7 @@ function renderString2(template, fullData, registers) {
|
|
|
65363
65270
|
return import_handlebars.default.compile(template)(fullData) || "";
|
|
65364
65271
|
}
|
|
65365
65272
|
|
|
65366
|
-
// ../../../../node_modules/.pnpm/@modern-js+codesmith-api-handlebars@2.6.
|
|
65273
|
+
// ../../../../node_modules/.pnpm/@modern-js+codesmith-api-handlebars@2.6.6_@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith-api-handlebars/dist/esm-node/index.js
|
|
65367
65274
|
var HandlebarsAPI = class {
|
|
65368
65275
|
registerHelp(helpers) {
|
|
65369
65276
|
return __async(this, null, function* () {
|
|
@@ -65520,7 +65427,7 @@ function __generator(thisArg, body) {
|
|
|
65520
65427
|
}
|
|
65521
65428
|
}
|
|
65522
65429
|
|
|
65523
|
-
// ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.
|
|
65430
|
+
// ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.6/node_modules/@modern-js/codesmith-utils/dist/esm/npm.js
|
|
65524
65431
|
var import_execa3 = __toESM(require_execa());
|
|
65525
65432
|
function canUseNvm() {
|
|
65526
65433
|
return _canUseNvm.apply(this, arguments);
|
|
@@ -65565,6 +65472,49 @@ function _canUseNvm() {
|
|
|
65565
65472
|
});
|
|
65566
65473
|
return _canUseNvm.apply(this, arguments);
|
|
65567
65474
|
}
|
|
65475
|
+
function canUseFnm() {
|
|
65476
|
+
return _canUseFnm.apply(this, arguments);
|
|
65477
|
+
}
|
|
65478
|
+
function _canUseFnm() {
|
|
65479
|
+
_canUseFnm = _async_to_generator(function() {
|
|
65480
|
+
var e;
|
|
65481
|
+
return __generator(this, function(_state) {
|
|
65482
|
+
switch (_state.label) {
|
|
65483
|
+
case 0:
|
|
65484
|
+
_state.trys.push([
|
|
65485
|
+
0,
|
|
65486
|
+
2,
|
|
65487
|
+
,
|
|
65488
|
+
3
|
|
65489
|
+
]);
|
|
65490
|
+
return [
|
|
65491
|
+
4,
|
|
65492
|
+
(0, import_execa3.default)("fnm --version", {
|
|
65493
|
+
env: process.env,
|
|
65494
|
+
shell: true
|
|
65495
|
+
})
|
|
65496
|
+
];
|
|
65497
|
+
case 1:
|
|
65498
|
+
_state.sent();
|
|
65499
|
+
return [
|
|
65500
|
+
2,
|
|
65501
|
+
true
|
|
65502
|
+
];
|
|
65503
|
+
case 2:
|
|
65504
|
+
e = _state.sent();
|
|
65505
|
+
return [
|
|
65506
|
+
2,
|
|
65507
|
+
false
|
|
65508
|
+
];
|
|
65509
|
+
case 3:
|
|
65510
|
+
return [
|
|
65511
|
+
2
|
|
65512
|
+
];
|
|
65513
|
+
}
|
|
65514
|
+
});
|
|
65515
|
+
});
|
|
65516
|
+
return _canUseFnm.apply(this, arguments);
|
|
65517
|
+
}
|
|
65568
65518
|
function canUseNpm() {
|
|
65569
65519
|
return _canUseNpm.apply(this, arguments);
|
|
65570
65520
|
}
|
|
@@ -65698,7 +65648,7 @@ function _canUsePnpm() {
|
|
|
65698
65648
|
return _canUsePnpm.apply(this, arguments);
|
|
65699
65649
|
}
|
|
65700
65650
|
|
|
65701
|
-
// ../../../../node_modules/.pnpm/@modern-js+codesmith-api-npm@2.6.
|
|
65651
|
+
// ../../../../node_modules/.pnpm/@modern-js+codesmith-api-npm@2.6.6_@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith-api-npm/dist/esm-node/utils/install.js
|
|
65702
65652
|
function execaWithStreamLog(command, args, options) {
|
|
65703
65653
|
const promise = (0, import_execa.default)(command, args, __spreadProps(__spreadValues({}, options), {
|
|
65704
65654
|
stdin: "inherit",
|
|
@@ -65799,7 +65749,7 @@ function pnpmInstall(_0) {
|
|
|
65799
65749
|
});
|
|
65800
65750
|
}
|
|
65801
65751
|
|
|
65802
|
-
// ../../../../node_modules/.pnpm/@modern-js+codesmith-api-npm@2.6.
|
|
65752
|
+
// ../../../../node_modules/.pnpm/@modern-js+codesmith-api-npm@2.6.6_@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith-api-npm/dist/esm-node/index.js
|
|
65803
65753
|
var NpmAPI = class {
|
|
65804
65754
|
npmInstall({ cwd, registryUrl, ignoreScripts }) {
|
|
65805
65755
|
return npmInstall({
|
|
@@ -65827,7 +65777,7 @@ var NpmAPI = class {
|
|
|
65827
65777
|
}
|
|
65828
65778
|
};
|
|
65829
65779
|
|
|
65830
|
-
// ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.
|
|
65780
|
+
// ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.6/node_modules/@modern-js/codesmith-utils/dist/esm/lodash.js
|
|
65831
65781
|
var import_lodash = __toESM(require_lodash());
|
|
65832
65782
|
var import_lodash2 = __toESM(require_lodash2());
|
|
65833
65783
|
var import_lodash3 = __toESM(require_lodash3());
|
|
@@ -71594,10 +71544,10 @@ var Schema = (
|
|
|
71594
71544
|
}()
|
|
71595
71545
|
);
|
|
71596
71546
|
|
|
71597
|
-
// ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.6.
|
|
71547
|
+
// ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.6.6_@modern-js+codesmith@2.6.6_typescript@5.3.3/node_modules/@modern-js/codesmith-formily/dist/esm-node/prompt.js
|
|
71598
71548
|
var import_inquirer = __toESM(require_inquirer());
|
|
71599
71549
|
|
|
71600
|
-
// ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.6.
|
|
71550
|
+
// ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.6.6_@modern-js+codesmith@2.6.6_typescript@5.3.3/node_modules/@modern-js/codesmith-formily/dist/esm-node/transform.js
|
|
71601
71551
|
function validateSchema(schema) {
|
|
71602
71552
|
const { type, properties } = schema;
|
|
71603
71553
|
if (type !== "object") {
|
|
@@ -71684,7 +71634,7 @@ function transformForm(schema, configValue = {}, validateMap, initValue) {
|
|
|
71684
71634
|
return getQuestionFromSchema(schema, configValue, validateMap, initValue);
|
|
71685
71635
|
}
|
|
71686
71636
|
|
|
71687
|
-
// ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.6.
|
|
71637
|
+
// ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.6.6_@modern-js+codesmith@2.6.6_typescript@5.3.3/node_modules/@modern-js/codesmith-formily/dist/esm-node/prompt.js
|
|
71688
71638
|
var compileRule = (rule, scope) => {
|
|
71689
71639
|
const state = Schema.compile(rule, __spreadValues({
|
|
71690
71640
|
$self: {},
|
|
@@ -71784,7 +71734,7 @@ function prompt(_0) {
|
|
|
71784
71734
|
});
|
|
71785
71735
|
}
|
|
71786
71736
|
|
|
71787
|
-
// ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.6.
|
|
71737
|
+
// ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.6.6_@modern-js+codesmith@2.6.6_typescript@5.3.3/node_modules/@modern-js/codesmith-formily/dist/esm-node/inquirer.js
|
|
71788
71738
|
var CLIReader = class {
|
|
71789
71739
|
getAnswers() {
|
|
71790
71740
|
return this.answers;
|
|
@@ -71812,8 +71762,8 @@ var CLIReader = class {
|
|
|
71812
71762
|
}
|
|
71813
71763
|
};
|
|
71814
71764
|
|
|
71815
|
-
// ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.
|
|
71816
|
-
var import_comment_json = __toESM(
|
|
71765
|
+
// ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.6_@modern-js+codesmith@2.6.6_typescript@5.3.3/node_modules/@modern-js/codesmith-api-app/dist/esm-node/index.js
|
|
71766
|
+
var import_comment_json = __toESM(require_src3());
|
|
71817
71767
|
var import_inquirer2 = __toESM(require_inquirer2());
|
|
71818
71768
|
|
|
71819
71769
|
// ../../../../node_modules/.pnpm/@modern-js+plugin-i18n@2.60.3/node_modules/@modern-js/plugin-i18n/dist/esm-node/index.js
|
|
@@ -71879,7 +71829,7 @@ var I18n = class {
|
|
|
71879
71829
|
}
|
|
71880
71830
|
};
|
|
71881
71831
|
|
|
71882
|
-
// ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.
|
|
71832
|
+
// ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.6_@modern-js+codesmith@2.6.6_typescript@5.3.3/node_modules/@modern-js/codesmith-api-app/dist/esm-node/locale/en.js
|
|
71883
71833
|
var EN_LOCALE = {
|
|
71884
71834
|
environment: {
|
|
71885
71835
|
node_version: "The version of Node.js is too low. Please upgrade to the LTS version: https://nodejs.org/",
|
|
@@ -71906,7 +71856,7 @@ var EN_LOCALE = {
|
|
|
71906
71856
|
}
|
|
71907
71857
|
};
|
|
71908
71858
|
|
|
71909
|
-
// ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.
|
|
71859
|
+
// ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.6_@modern-js+codesmith@2.6.6_typescript@5.3.3/node_modules/@modern-js/codesmith-api-app/dist/esm-node/locale/zh.js
|
|
71910
71860
|
var ZH_LOCALE = {
|
|
71911
71861
|
environment: {
|
|
71912
71862
|
node_version: "Node.js 版本太低,请升级至 LTS 版本: https://nodejs.org/",
|
|
@@ -71933,14 +71883,14 @@ var ZH_LOCALE = {
|
|
|
71933
71883
|
}
|
|
71934
71884
|
};
|
|
71935
71885
|
|
|
71936
|
-
// ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.
|
|
71886
|
+
// ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.6_@modern-js+codesmith@2.6.6_typescript@5.3.3/node_modules/@modern-js/codesmith-api-app/dist/esm-node/locale/index.js
|
|
71937
71887
|
var i18n = new I18n();
|
|
71938
71888
|
var localeKeys = i18n.init("zh", {
|
|
71939
71889
|
zh: ZH_LOCALE,
|
|
71940
71890
|
en: EN_LOCALE
|
|
71941
71891
|
});
|
|
71942
71892
|
|
|
71943
|
-
// ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.
|
|
71893
|
+
// ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.6_@modern-js+codesmith@2.6.6_typescript@5.3.3/node_modules/@modern-js/codesmith-api-app/dist/esm-node/utils/checkUseNvm.js
|
|
71944
71894
|
var import_path3 = __toESM(require("path"));
|
|
71945
71895
|
var NODE_MAJOR_VERSION_MAP = {
|
|
71946
71896
|
"lts/*": 18,
|
|
@@ -71975,7 +71925,7 @@ function checkUseNvm(cwd, logger) {
|
|
|
71975
71925
|
if (expectNodeVersion === import_semver.default.major(currentNodeVersion)) {
|
|
71976
71926
|
return false;
|
|
71977
71927
|
}
|
|
71978
|
-
if (!(yield canUseNvm())) {
|
|
71928
|
+
if (!((yield canUseNvm()) || (yield canUseFnm()))) {
|
|
71979
71929
|
logger.warn(`🟡 [Check nvm Error]: Current node version is not expect, you should install ${expectNodeVersion}`);
|
|
71980
71930
|
return false;
|
|
71981
71931
|
}
|
|
@@ -71991,7 +71941,7 @@ function checkUseNvm(cwd, logger) {
|
|
|
71991
71941
|
});
|
|
71992
71942
|
}
|
|
71993
71943
|
|
|
71994
|
-
// ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.
|
|
71944
|
+
// ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.6_@modern-js+codesmith@2.6.6_typescript@5.3.3/node_modules/@modern-js/codesmith-api-app/dist/esm-node/utils/transform.js
|
|
71995
71945
|
function transformInquirerSchema(questions, configValue = {}, validateMap = {}, initValue = {}) {
|
|
71996
71946
|
for (const question of questions) {
|
|
71997
71947
|
question.default = initValue[question.name] || question.default;
|
|
@@ -72018,7 +71968,7 @@ function transformInquirerSchema(questions, configValue = {}, validateMap = {},
|
|
|
72018
71968
|
return questions;
|
|
72019
71969
|
}
|
|
72020
71970
|
|
|
72021
|
-
// ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.
|
|
71971
|
+
// ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.6_@modern-js+codesmith@2.6.6_typescript@5.3.3/node_modules/@modern-js/codesmith-api-app/dist/esm-node/index.js
|
|
72022
71972
|
var AppAPI = class {
|
|
72023
71973
|
checkEnvironment(nodeVersion) {
|
|
72024
71974
|
return __async(this, null, function* () {
|
|
@@ -72261,11 +72211,11 @@ var AppAPI = class {
|
|
|
72261
72211
|
}
|
|
72262
72212
|
};
|
|
72263
72213
|
|
|
72264
|
-
// ../../../../node_modules/.pnpm/@modern-js+codesmith-api-json@2.6.
|
|
72265
|
-
var import_comment_json2 = __toESM(
|
|
72214
|
+
// ../../../../node_modules/.pnpm/@modern-js+codesmith-api-json@2.6.6/node_modules/@modern-js/codesmith-api-json/dist/esm-node/index.js
|
|
72215
|
+
var import_comment_json2 = __toESM(require_src3());
|
|
72266
72216
|
var declarationUpdate = __toESM(require_dist());
|
|
72267
72217
|
|
|
72268
|
-
// ../../../../node_modules/.pnpm/@modern-js+codesmith-api-json@2.6.
|
|
72218
|
+
// ../../../../node_modules/.pnpm/@modern-js+codesmith-api-json@2.6.6/node_modules/@modern-js/codesmith-api-json/dist/esm-node/utils/index.js
|
|
72269
72219
|
function editJson(generatorCore, resource, getNewJsonValue) {
|
|
72270
72220
|
return __async(this, null, function* () {
|
|
72271
72221
|
const originJsonValue = yield resource.value();
|
|
@@ -72280,7 +72230,7 @@ function editJson(generatorCore, resource, getNewJsonValue) {
|
|
|
72280
72230
|
});
|
|
72281
72231
|
}
|
|
72282
72232
|
|
|
72283
|
-
// ../../../../node_modules/.pnpm/@modern-js+codesmith-api-json@2.6.
|
|
72233
|
+
// ../../../../node_modules/.pnpm/@modern-js+codesmith-api-json@2.6.6/node_modules/@modern-js/codesmith-api-json/dist/esm-node/index.js
|
|
72284
72234
|
var JsonAPI = class {
|
|
72285
72235
|
get(resource) {
|
|
72286
72236
|
return __async(this, null, function* () {
|