@modern-js/repo-generator 0.0.0-next-1679337154505 → 0.0.0-next-1679388160221
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 +407 -115
- package/package.json +12 -12
package/dist/index.js
CHANGED
|
@@ -46936,6 +46936,306 @@ var require_browser = __commonJS({
|
|
|
46936
46936
|
}
|
|
46937
46937
|
});
|
|
46938
46938
|
|
|
46939
|
+
// ../../../../node_modules/.pnpm/has-flag@4.0.0/node_modules/has-flag/index.js
|
|
46940
|
+
var require_has_flag = __commonJS({
|
|
46941
|
+
"../../../../node_modules/.pnpm/has-flag@4.0.0/node_modules/has-flag/index.js"(exports, module2) {
|
|
46942
|
+
"use strict";
|
|
46943
|
+
module2.exports = (flag, argv = process.argv) => {
|
|
46944
|
+
const prefix = flag.startsWith("-") ? "" : flag.length === 1 ? "-" : "--";
|
|
46945
|
+
const position = argv.indexOf(prefix + flag);
|
|
46946
|
+
const terminatorPosition = argv.indexOf("--");
|
|
46947
|
+
return position !== -1 && (terminatorPosition === -1 || position < terminatorPosition);
|
|
46948
|
+
};
|
|
46949
|
+
}
|
|
46950
|
+
});
|
|
46951
|
+
|
|
46952
|
+
// ../../../../node_modules/.pnpm/supports-color@7.2.0/node_modules/supports-color/index.js
|
|
46953
|
+
var require_supports_color = __commonJS({
|
|
46954
|
+
"../../../../node_modules/.pnpm/supports-color@7.2.0/node_modules/supports-color/index.js"(exports, module2) {
|
|
46955
|
+
"use strict";
|
|
46956
|
+
var os = require("os");
|
|
46957
|
+
var tty = require("tty");
|
|
46958
|
+
var hasFlag = require_has_flag();
|
|
46959
|
+
var { env } = process;
|
|
46960
|
+
var forceColor;
|
|
46961
|
+
if (hasFlag("no-color") || hasFlag("no-colors") || hasFlag("color=false") || hasFlag("color=never")) {
|
|
46962
|
+
forceColor = 0;
|
|
46963
|
+
} else if (hasFlag("color") || hasFlag("colors") || hasFlag("color=true") || hasFlag("color=always")) {
|
|
46964
|
+
forceColor = 1;
|
|
46965
|
+
}
|
|
46966
|
+
if ("FORCE_COLOR" in env) {
|
|
46967
|
+
if (env.FORCE_COLOR === "true") {
|
|
46968
|
+
forceColor = 1;
|
|
46969
|
+
} else if (env.FORCE_COLOR === "false") {
|
|
46970
|
+
forceColor = 0;
|
|
46971
|
+
} else {
|
|
46972
|
+
forceColor = env.FORCE_COLOR.length === 0 ? 1 : Math.min(parseInt(env.FORCE_COLOR, 10), 3);
|
|
46973
|
+
}
|
|
46974
|
+
}
|
|
46975
|
+
function translateLevel(level) {
|
|
46976
|
+
if (level === 0) {
|
|
46977
|
+
return false;
|
|
46978
|
+
}
|
|
46979
|
+
return {
|
|
46980
|
+
level,
|
|
46981
|
+
hasBasic: true,
|
|
46982
|
+
has256: level >= 2,
|
|
46983
|
+
has16m: level >= 3
|
|
46984
|
+
};
|
|
46985
|
+
}
|
|
46986
|
+
function supportsColor(haveStream, streamIsTTY) {
|
|
46987
|
+
if (forceColor === 0) {
|
|
46988
|
+
return 0;
|
|
46989
|
+
}
|
|
46990
|
+
if (hasFlag("color=16m") || hasFlag("color=full") || hasFlag("color=truecolor")) {
|
|
46991
|
+
return 3;
|
|
46992
|
+
}
|
|
46993
|
+
if (hasFlag("color=256")) {
|
|
46994
|
+
return 2;
|
|
46995
|
+
}
|
|
46996
|
+
if (haveStream && !streamIsTTY && forceColor === void 0) {
|
|
46997
|
+
return 0;
|
|
46998
|
+
}
|
|
46999
|
+
const min = forceColor || 0;
|
|
47000
|
+
if (env.TERM === "dumb") {
|
|
47001
|
+
return min;
|
|
47002
|
+
}
|
|
47003
|
+
if (process.platform === "win32") {
|
|
47004
|
+
const osRelease = os.release().split(".");
|
|
47005
|
+
if (Number(osRelease[0]) >= 10 && Number(osRelease[2]) >= 10586) {
|
|
47006
|
+
return Number(osRelease[2]) >= 14931 ? 3 : 2;
|
|
47007
|
+
}
|
|
47008
|
+
return 1;
|
|
47009
|
+
}
|
|
47010
|
+
if ("CI" in env) {
|
|
47011
|
+
if (["TRAVIS", "CIRCLECI", "APPVEYOR", "GITLAB_CI", "GITHUB_ACTIONS", "BUILDKITE"].some((sign) => sign in env) || env.CI_NAME === "codeship") {
|
|
47012
|
+
return 1;
|
|
47013
|
+
}
|
|
47014
|
+
return min;
|
|
47015
|
+
}
|
|
47016
|
+
if ("TEAMCITY_VERSION" in env) {
|
|
47017
|
+
return /^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(env.TEAMCITY_VERSION) ? 1 : 0;
|
|
47018
|
+
}
|
|
47019
|
+
if (env.COLORTERM === "truecolor") {
|
|
47020
|
+
return 3;
|
|
47021
|
+
}
|
|
47022
|
+
if ("TERM_PROGRAM" in env) {
|
|
47023
|
+
const version = parseInt((env.TERM_PROGRAM_VERSION || "").split(".")[0], 10);
|
|
47024
|
+
switch (env.TERM_PROGRAM) {
|
|
47025
|
+
case "iTerm.app":
|
|
47026
|
+
return version >= 3 ? 3 : 2;
|
|
47027
|
+
case "Apple_Terminal":
|
|
47028
|
+
return 2;
|
|
47029
|
+
}
|
|
47030
|
+
}
|
|
47031
|
+
if (/-256(color)?$/i.test(env.TERM)) {
|
|
47032
|
+
return 2;
|
|
47033
|
+
}
|
|
47034
|
+
if (/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(env.TERM)) {
|
|
47035
|
+
return 1;
|
|
47036
|
+
}
|
|
47037
|
+
if ("COLORTERM" in env) {
|
|
47038
|
+
return 1;
|
|
47039
|
+
}
|
|
47040
|
+
return min;
|
|
47041
|
+
}
|
|
47042
|
+
function getSupportLevel(stream) {
|
|
47043
|
+
const level = supportsColor(stream, stream && stream.isTTY);
|
|
47044
|
+
return translateLevel(level);
|
|
47045
|
+
}
|
|
47046
|
+
module2.exports = {
|
|
47047
|
+
supportsColor: getSupportLevel,
|
|
47048
|
+
stdout: translateLevel(supportsColor(true, tty.isatty(1))),
|
|
47049
|
+
stderr: translateLevel(supportsColor(true, tty.isatty(2)))
|
|
47050
|
+
};
|
|
47051
|
+
}
|
|
47052
|
+
});
|
|
47053
|
+
|
|
47054
|
+
// ../../../../node_modules/.pnpm/debug@4.3.4/node_modules/debug/src/node.js
|
|
47055
|
+
var require_node3 = __commonJS({
|
|
47056
|
+
"../../../../node_modules/.pnpm/debug@4.3.4/node_modules/debug/src/node.js"(exports, module2) {
|
|
47057
|
+
var tty = require("tty");
|
|
47058
|
+
var util = require("util");
|
|
47059
|
+
exports.init = init;
|
|
47060
|
+
exports.log = log;
|
|
47061
|
+
exports.formatArgs = formatArgs;
|
|
47062
|
+
exports.save = save;
|
|
47063
|
+
exports.load = load;
|
|
47064
|
+
exports.useColors = useColors;
|
|
47065
|
+
exports.destroy = util.deprecate(
|
|
47066
|
+
() => {
|
|
47067
|
+
},
|
|
47068
|
+
"Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`."
|
|
47069
|
+
);
|
|
47070
|
+
exports.colors = [6, 2, 3, 4, 5, 1];
|
|
47071
|
+
try {
|
|
47072
|
+
const supportsColor = require_supports_color();
|
|
47073
|
+
if (supportsColor && (supportsColor.stderr || supportsColor).level >= 2) {
|
|
47074
|
+
exports.colors = [
|
|
47075
|
+
20,
|
|
47076
|
+
21,
|
|
47077
|
+
26,
|
|
47078
|
+
27,
|
|
47079
|
+
32,
|
|
47080
|
+
33,
|
|
47081
|
+
38,
|
|
47082
|
+
39,
|
|
47083
|
+
40,
|
|
47084
|
+
41,
|
|
47085
|
+
42,
|
|
47086
|
+
43,
|
|
47087
|
+
44,
|
|
47088
|
+
45,
|
|
47089
|
+
56,
|
|
47090
|
+
57,
|
|
47091
|
+
62,
|
|
47092
|
+
63,
|
|
47093
|
+
68,
|
|
47094
|
+
69,
|
|
47095
|
+
74,
|
|
47096
|
+
75,
|
|
47097
|
+
76,
|
|
47098
|
+
77,
|
|
47099
|
+
78,
|
|
47100
|
+
79,
|
|
47101
|
+
80,
|
|
47102
|
+
81,
|
|
47103
|
+
92,
|
|
47104
|
+
93,
|
|
47105
|
+
98,
|
|
47106
|
+
99,
|
|
47107
|
+
112,
|
|
47108
|
+
113,
|
|
47109
|
+
128,
|
|
47110
|
+
129,
|
|
47111
|
+
134,
|
|
47112
|
+
135,
|
|
47113
|
+
148,
|
|
47114
|
+
149,
|
|
47115
|
+
160,
|
|
47116
|
+
161,
|
|
47117
|
+
162,
|
|
47118
|
+
163,
|
|
47119
|
+
164,
|
|
47120
|
+
165,
|
|
47121
|
+
166,
|
|
47122
|
+
167,
|
|
47123
|
+
168,
|
|
47124
|
+
169,
|
|
47125
|
+
170,
|
|
47126
|
+
171,
|
|
47127
|
+
172,
|
|
47128
|
+
173,
|
|
47129
|
+
178,
|
|
47130
|
+
179,
|
|
47131
|
+
184,
|
|
47132
|
+
185,
|
|
47133
|
+
196,
|
|
47134
|
+
197,
|
|
47135
|
+
198,
|
|
47136
|
+
199,
|
|
47137
|
+
200,
|
|
47138
|
+
201,
|
|
47139
|
+
202,
|
|
47140
|
+
203,
|
|
47141
|
+
204,
|
|
47142
|
+
205,
|
|
47143
|
+
206,
|
|
47144
|
+
207,
|
|
47145
|
+
208,
|
|
47146
|
+
209,
|
|
47147
|
+
214,
|
|
47148
|
+
215,
|
|
47149
|
+
220,
|
|
47150
|
+
221
|
|
47151
|
+
];
|
|
47152
|
+
}
|
|
47153
|
+
} catch (error) {
|
|
47154
|
+
}
|
|
47155
|
+
exports.inspectOpts = Object.keys(process.env).filter((key) => {
|
|
47156
|
+
return /^debug_/i.test(key);
|
|
47157
|
+
}).reduce((obj, key) => {
|
|
47158
|
+
const prop = key.substring(6).toLowerCase().replace(/_([a-z])/g, (_, k) => {
|
|
47159
|
+
return k.toUpperCase();
|
|
47160
|
+
});
|
|
47161
|
+
let val = process.env[key];
|
|
47162
|
+
if (/^(yes|on|true|enabled)$/i.test(val)) {
|
|
47163
|
+
val = true;
|
|
47164
|
+
} else if (/^(no|off|false|disabled)$/i.test(val)) {
|
|
47165
|
+
val = false;
|
|
47166
|
+
} else if (val === "null") {
|
|
47167
|
+
val = null;
|
|
47168
|
+
} else {
|
|
47169
|
+
val = Number(val);
|
|
47170
|
+
}
|
|
47171
|
+
obj[prop] = val;
|
|
47172
|
+
return obj;
|
|
47173
|
+
}, {});
|
|
47174
|
+
function useColors() {
|
|
47175
|
+
return "colors" in exports.inspectOpts ? Boolean(exports.inspectOpts.colors) : tty.isatty(process.stderr.fd);
|
|
47176
|
+
}
|
|
47177
|
+
function formatArgs(args) {
|
|
47178
|
+
const { namespace: name, useColors: useColors2 } = this;
|
|
47179
|
+
if (useColors2) {
|
|
47180
|
+
const c = this.color;
|
|
47181
|
+
const colorCode = "\x1B[3" + (c < 8 ? c : "8;5;" + c);
|
|
47182
|
+
const prefix = ` ${colorCode};1m${name} \x1B[0m`;
|
|
47183
|
+
args[0] = prefix + args[0].split("\n").join("\n" + prefix);
|
|
47184
|
+
args.push(colorCode + "m+" + module2.exports.humanize(this.diff) + "\x1B[0m");
|
|
47185
|
+
} else {
|
|
47186
|
+
args[0] = getDate() + name + " " + args[0];
|
|
47187
|
+
}
|
|
47188
|
+
}
|
|
47189
|
+
function getDate() {
|
|
47190
|
+
if (exports.inspectOpts.hideDate) {
|
|
47191
|
+
return "";
|
|
47192
|
+
}
|
|
47193
|
+
return (/* @__PURE__ */ new Date()).toISOString() + " ";
|
|
47194
|
+
}
|
|
47195
|
+
function log(...args) {
|
|
47196
|
+
return process.stderr.write(util.format(...args) + "\n");
|
|
47197
|
+
}
|
|
47198
|
+
function save(namespaces) {
|
|
47199
|
+
if (namespaces) {
|
|
47200
|
+
process.env.DEBUG = namespaces;
|
|
47201
|
+
} else {
|
|
47202
|
+
delete process.env.DEBUG;
|
|
47203
|
+
}
|
|
47204
|
+
}
|
|
47205
|
+
function load() {
|
|
47206
|
+
return process.env.DEBUG;
|
|
47207
|
+
}
|
|
47208
|
+
function init(debug2) {
|
|
47209
|
+
debug2.inspectOpts = {};
|
|
47210
|
+
const keys = Object.keys(exports.inspectOpts);
|
|
47211
|
+
for (let i = 0; i < keys.length; i++) {
|
|
47212
|
+
debug2.inspectOpts[keys[i]] = exports.inspectOpts[keys[i]];
|
|
47213
|
+
}
|
|
47214
|
+
}
|
|
47215
|
+
module2.exports = require_common2()(exports);
|
|
47216
|
+
var { formatters } = module2.exports;
|
|
47217
|
+
formatters.o = function(v) {
|
|
47218
|
+
this.inspectOpts.colors = this.useColors;
|
|
47219
|
+
return util.inspect(v, this.inspectOpts).split("\n").map((str) => str.trim()).join(" ");
|
|
47220
|
+
};
|
|
47221
|
+
formatters.O = function(v) {
|
|
47222
|
+
this.inspectOpts.colors = this.useColors;
|
|
47223
|
+
return util.inspect(v, this.inspectOpts);
|
|
47224
|
+
};
|
|
47225
|
+
}
|
|
47226
|
+
});
|
|
47227
|
+
|
|
47228
|
+
// ../../../../node_modules/.pnpm/debug@4.3.4/node_modules/debug/src/index.js
|
|
47229
|
+
var require_src3 = __commonJS({
|
|
47230
|
+
"../../../../node_modules/.pnpm/debug@4.3.4/node_modules/debug/src/index.js"(exports, module2) {
|
|
47231
|
+
if (typeof process === "undefined" || process.type === "renderer" || process.browser === true || process.__nwjs) {
|
|
47232
|
+
module2.exports = require_browser();
|
|
47233
|
+
} else {
|
|
47234
|
+
module2.exports = require_node3();
|
|
47235
|
+
}
|
|
47236
|
+
}
|
|
47237
|
+
});
|
|
47238
|
+
|
|
46939
47239
|
// ../../../../node_modules/.pnpm/follow-redirects@1.15.1/node_modules/follow-redirects/debug.js
|
|
46940
47240
|
var require_debug3 = __commonJS({
|
|
46941
47241
|
"../../../../node_modules/.pnpm/follow-redirects@1.15.1/node_modules/follow-redirects/debug.js"(exports, module2) {
|
|
@@ -46943,7 +47243,7 @@ var require_debug3 = __commonJS({
|
|
|
46943
47243
|
module2.exports = function() {
|
|
46944
47244
|
if (!debug2) {
|
|
46945
47245
|
try {
|
|
46946
|
-
debug2 =
|
|
47246
|
+
debug2 = require_src3()("follow-redirects");
|
|
46947
47247
|
} catch (error) {
|
|
46948
47248
|
}
|
|
46949
47249
|
if (typeof debug2 !== "function") {
|
|
@@ -54077,7 +54377,7 @@ var require_codesmith = __commonJS({
|
|
|
54077
54377
|
});
|
|
54078
54378
|
|
|
54079
54379
|
// ../../../../node_modules/.pnpm/@modern-js+codesmith@2.0.5/node_modules/@modern-js/codesmith/dist/js/node/index.js
|
|
54080
|
-
var
|
|
54380
|
+
var require_node4 = __commonJS({
|
|
54081
54381
|
"../../../../node_modules/.pnpm/@modern-js+codesmith@2.0.5/node_modules/@modern-js/codesmith/dist/js/node/index.js"(exports) {
|
|
54082
54382
|
"use strict";
|
|
54083
54383
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -60101,7 +60401,7 @@ var require_utils6 = __commonJS({
|
|
|
60101
60401
|
});
|
|
60102
60402
|
|
|
60103
60403
|
// ../../../../node_modules/.pnpm/@modern-js+codesmith-api-handlebars@2.0.5_@modern-js+codesmith@2.0.5/node_modules/@modern-js/codesmith-api-handlebars/dist/js/node/index.js
|
|
60104
|
-
var
|
|
60404
|
+
var require_node5 = __commonJS({
|
|
60105
60405
|
"../../../../node_modules/.pnpm/@modern-js+codesmith-api-handlebars@2.0.5_@modern-js+codesmith@2.0.5/node_modules/@modern-js/codesmith-api-handlebars/dist/js/node/index.js"(exports) {
|
|
60106
60406
|
"use strict";
|
|
60107
60407
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -60114,7 +60414,7 @@ var require_node4 = __commonJS({
|
|
|
60114
60414
|
return _utils.renderString;
|
|
60115
60415
|
}
|
|
60116
60416
|
});
|
|
60117
|
-
var _codesmith =
|
|
60417
|
+
var _codesmith = require_node4();
|
|
60118
60418
|
var _utils = require_utils6();
|
|
60119
60419
|
function ownKeys7(object, enumerableOnly) {
|
|
60120
60420
|
var keys = Object.keys(object);
|
|
@@ -60942,7 +61242,7 @@ var require_utils8 = __commonJS({
|
|
|
60942
61242
|
});
|
|
60943
61243
|
|
|
60944
61244
|
// ../../../../node_modules/.pnpm/@modern-js+codesmith-api-ejs@2.0.5_@modern-js+codesmith@2.0.5/node_modules/@modern-js/codesmith-api-ejs/dist/js/node/index.js
|
|
60945
|
-
var
|
|
61245
|
+
var require_node6 = __commonJS({
|
|
60946
61246
|
"../../../../node_modules/.pnpm/@modern-js+codesmith-api-ejs@2.0.5_@modern-js+codesmith@2.0.5/node_modules/@modern-js/codesmith-api-ejs/dist/js/node/index.js"(exports) {
|
|
60947
61247
|
"use strict";
|
|
60948
61248
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -60955,7 +61255,7 @@ var require_node5 = __commonJS({
|
|
|
60955
61255
|
return _utils.renderString;
|
|
60956
61256
|
}
|
|
60957
61257
|
});
|
|
60958
|
-
var _codesmith =
|
|
61258
|
+
var _codesmith = require_node4();
|
|
60959
61259
|
var _utils = require_utils8();
|
|
60960
61260
|
function _defineProperty14(obj, key, value) {
|
|
60961
61261
|
if (key in obj) {
|
|
@@ -61015,7 +61315,7 @@ var require_constant = __commonJS({
|
|
|
61015
61315
|
});
|
|
61016
61316
|
|
|
61017
61317
|
// ../../../../node_modules/.pnpm/@modern-js+codesmith-api-fs@2.0.5_@modern-js+codesmith@2.0.5/node_modules/@modern-js/codesmith-api-fs/dist/js/node/index.js
|
|
61018
|
-
var
|
|
61318
|
+
var require_node7 = __commonJS({
|
|
61019
61319
|
"../../../../node_modules/.pnpm/@modern-js+codesmith-api-fs@2.0.5_@modern-js+codesmith@2.0.5/node_modules/@modern-js/codesmith-api-fs/dist/js/node/index.js"(exports) {
|
|
61020
61320
|
"use strict";
|
|
61021
61321
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -61023,7 +61323,7 @@ var require_node6 = __commonJS({
|
|
|
61023
61323
|
});
|
|
61024
61324
|
exports.FsAPI = void 0;
|
|
61025
61325
|
var _path = _interopRequireDefault(require("path"));
|
|
61026
|
-
var _codesmith =
|
|
61326
|
+
var _codesmith = require_node4();
|
|
61027
61327
|
var _constant = require_constant();
|
|
61028
61328
|
function _interopRequireDefault(obj) {
|
|
61029
61329
|
return obj && obj.__esModule ? obj : { default: obj };
|
|
@@ -88527,19 +88827,42 @@ var require_cli_spinners = __commonJS({
|
|
|
88527
88827
|
}
|
|
88528
88828
|
});
|
|
88529
88829
|
|
|
88530
|
-
// ../../../../node_modules/.pnpm/
|
|
88531
|
-
var
|
|
88532
|
-
"../../../../node_modules/.pnpm/
|
|
88830
|
+
// ../../../../node_modules/.pnpm/is-unicode-supported@0.1.0/node_modules/is-unicode-supported/index.js
|
|
88831
|
+
var require_is_unicode_supported = __commonJS({
|
|
88832
|
+
"../../../../node_modules/.pnpm/is-unicode-supported@0.1.0/node_modules/is-unicode-supported/index.js"(exports, module2) {
|
|
88533
88833
|
"use strict";
|
|
88534
|
-
module2.exports = {
|
|
88535
|
-
|
|
88536
|
-
|
|
88537
|
-
|
|
88538
|
-
|
|
88834
|
+
module2.exports = () => {
|
|
88835
|
+
if (process.platform !== "win32") {
|
|
88836
|
+
return true;
|
|
88837
|
+
}
|
|
88838
|
+
return Boolean(process.env.CI) || Boolean(process.env.WT_SESSION) || // Windows Terminal
|
|
88839
|
+
process.env.TERM_PROGRAM === "vscode" || process.env.TERM === "xterm-256color" || process.env.TERM === "alacritty";
|
|
88539
88840
|
};
|
|
88540
88841
|
}
|
|
88541
88842
|
});
|
|
88542
88843
|
|
|
88844
|
+
// ../../../../node_modules/.pnpm/log-symbols@4.1.0/node_modules/log-symbols/index.js
|
|
88845
|
+
var require_log_symbols = __commonJS({
|
|
88846
|
+
"../../../../node_modules/.pnpm/log-symbols@4.1.0/node_modules/log-symbols/index.js"(exports, module2) {
|
|
88847
|
+
"use strict";
|
|
88848
|
+
var chalk3 = require_chalk2();
|
|
88849
|
+
var isUnicodeSupported = require_is_unicode_supported();
|
|
88850
|
+
var main = {
|
|
88851
|
+
info: chalk3.blue("ℹ"),
|
|
88852
|
+
success: chalk3.green("✔"),
|
|
88853
|
+
warning: chalk3.yellow("⚠"),
|
|
88854
|
+
error: chalk3.red("✖")
|
|
88855
|
+
};
|
|
88856
|
+
var fallback = {
|
|
88857
|
+
info: chalk3.blue("i"),
|
|
88858
|
+
success: chalk3.green("√"),
|
|
88859
|
+
warning: chalk3.yellow("‼"),
|
|
88860
|
+
error: chalk3.red("×")
|
|
88861
|
+
};
|
|
88862
|
+
module2.exports = isUnicodeSupported() ? main : fallback;
|
|
88863
|
+
}
|
|
88864
|
+
});
|
|
88865
|
+
|
|
88543
88866
|
// ../../../../node_modules/.pnpm/clone@1.0.4/node_modules/clone/clone.js
|
|
88544
88867
|
var require_clone2 = __commonJS({
|
|
88545
88868
|
"../../../../node_modules/.pnpm/clone@1.0.4/node_modules/clone/clone.js"(exports, module2) {
|
|
@@ -88910,20 +89233,6 @@ var require_is_interactive = __commonJS({
|
|
|
88910
89233
|
}
|
|
88911
89234
|
});
|
|
88912
89235
|
|
|
88913
|
-
// ../../../../node_modules/.pnpm/is-unicode-supported@0.1.0/node_modules/is-unicode-supported/index.js
|
|
88914
|
-
var require_is_unicode_supported = __commonJS({
|
|
88915
|
-
"../../../../node_modules/.pnpm/is-unicode-supported@0.1.0/node_modules/is-unicode-supported/index.js"(exports, module2) {
|
|
88916
|
-
"use strict";
|
|
88917
|
-
module2.exports = () => {
|
|
88918
|
-
if (process.platform !== "win32") {
|
|
88919
|
-
return true;
|
|
88920
|
-
}
|
|
88921
|
-
return Boolean(process.env.CI) || Boolean(process.env.WT_SESSION) || // Windows Terminal
|
|
88922
|
-
process.env.TERM_PROGRAM === "vscode" || process.env.TERM === "xterm-256color" || process.env.TERM === "alacritty";
|
|
88923
|
-
};
|
|
88924
|
-
}
|
|
88925
|
-
});
|
|
88926
|
-
|
|
88927
89236
|
// ../../../../node_modules/.pnpm/readable-stream@3.6.0/node_modules/readable-stream/lib/internal/streams/stream.js
|
|
88928
89237
|
var require_stream = __commonJS({
|
|
88929
89238
|
"../../../../node_modules/.pnpm/readable-stream@3.6.0/node_modules/readable-stream/lib/internal/streams/stream.js"(exports, module2) {
|
|
@@ -89434,42 +89743,25 @@ var require_inherits_browser = __commonJS({
|
|
|
89434
89743
|
}
|
|
89435
89744
|
});
|
|
89436
89745
|
|
|
89437
|
-
// ../../../../node_modules/.pnpm/
|
|
89438
|
-
var
|
|
89439
|
-
"../../../../node_modules/.pnpm/
|
|
89440
|
-
|
|
89441
|
-
|
|
89442
|
-
if (
|
|
89443
|
-
|
|
89444
|
-
|
|
89445
|
-
|
|
89446
|
-
|
|
89447
|
-
if (!warned) {
|
|
89448
|
-
if (config("throwDeprecation")) {
|
|
89449
|
-
throw new Error(msg);
|
|
89450
|
-
} else if (config("traceDeprecation")) {
|
|
89451
|
-
console.trace(msg);
|
|
89452
|
-
} else {
|
|
89453
|
-
console.warn(msg);
|
|
89454
|
-
}
|
|
89455
|
-
warned = true;
|
|
89456
|
-
}
|
|
89457
|
-
return fn.apply(this, arguments);
|
|
89458
|
-
}
|
|
89459
|
-
return deprecated;
|
|
89460
|
-
}
|
|
89461
|
-
function config(name) {
|
|
89462
|
-
try {
|
|
89463
|
-
if (!global.localStorage)
|
|
89464
|
-
return false;
|
|
89465
|
-
} catch (_) {
|
|
89466
|
-
return false;
|
|
89467
|
-
}
|
|
89468
|
-
var val = global.localStorage[name];
|
|
89469
|
-
if (null == val)
|
|
89470
|
-
return false;
|
|
89471
|
-
return String(val).toLowerCase() === "true";
|
|
89746
|
+
// ../../../../node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits.js
|
|
89747
|
+
var require_inherits = __commonJS({
|
|
89748
|
+
"../../../../node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits.js"(exports, module2) {
|
|
89749
|
+
try {
|
|
89750
|
+
util = require("util");
|
|
89751
|
+
if (typeof util.inherits !== "function")
|
|
89752
|
+
throw "";
|
|
89753
|
+
module2.exports = util.inherits;
|
|
89754
|
+
} catch (e) {
|
|
89755
|
+
module2.exports = require_inherits_browser();
|
|
89472
89756
|
}
|
|
89757
|
+
var util;
|
|
89758
|
+
}
|
|
89759
|
+
});
|
|
89760
|
+
|
|
89761
|
+
// ../../../../node_modules/.pnpm/util-deprecate@1.0.2/node_modules/util-deprecate/node.js
|
|
89762
|
+
var require_node8 = __commonJS({
|
|
89763
|
+
"../../../../node_modules/.pnpm/util-deprecate@1.0.2/node_modules/util-deprecate/node.js"(exports, module2) {
|
|
89764
|
+
module2.exports = require("util").deprecate;
|
|
89473
89765
|
}
|
|
89474
89766
|
});
|
|
89475
89767
|
|
|
@@ -89489,7 +89781,7 @@ var require_stream_writable = __commonJS({
|
|
|
89489
89781
|
var Duplex;
|
|
89490
89782
|
Writable.WritableState = WritableState;
|
|
89491
89783
|
var internalUtil = {
|
|
89492
|
-
deprecate:
|
|
89784
|
+
deprecate: require_node8()
|
|
89493
89785
|
};
|
|
89494
89786
|
var Stream = require_stream();
|
|
89495
89787
|
var Buffer2 = require("buffer").Buffer;
|
|
@@ -89514,7 +89806,7 @@ var require_stream_writable = __commonJS({
|
|
|
89514
89806
|
var ERR_STREAM_WRITE_AFTER_END = _require$codes.ERR_STREAM_WRITE_AFTER_END;
|
|
89515
89807
|
var ERR_UNKNOWN_ENCODING = _require$codes.ERR_UNKNOWN_ENCODING;
|
|
89516
89808
|
var errorOrDestroy = destroyImpl.errorOrDestroy;
|
|
89517
|
-
|
|
89809
|
+
require_inherits()(Writable, Stream);
|
|
89518
89810
|
function nop() {
|
|
89519
89811
|
}
|
|
89520
89812
|
function WritableState(options, stream, isDuplex) {
|
|
@@ -89987,7 +90279,7 @@ var require_stream_duplex = __commonJS({
|
|
|
89987
90279
|
module2.exports = Duplex;
|
|
89988
90280
|
var Readable = require_stream_readable();
|
|
89989
90281
|
var Writable = require_stream_writable();
|
|
89990
|
-
|
|
90282
|
+
require_inherits()(Duplex, Readable);
|
|
89991
90283
|
{
|
|
89992
90284
|
keys = objectKeys(Writable.prototype);
|
|
89993
90285
|
for (v = 0; v < keys.length; v++) {
|
|
@@ -90818,7 +91110,7 @@ var require_stream_readable = __commonJS({
|
|
|
90818
91110
|
var StringDecoder;
|
|
90819
91111
|
var createReadableStreamAsyncIterator;
|
|
90820
91112
|
var from;
|
|
90821
|
-
|
|
91113
|
+
require_inherits()(Readable, Stream);
|
|
90822
91114
|
var errorOrDestroy = destroyImpl.errorOrDestroy;
|
|
90823
91115
|
var kProxyEvents = ["error", "close", "destroy", "pause", "resume"];
|
|
90824
91116
|
function prependListener(emitter, event, fn) {
|
|
@@ -91586,7 +91878,7 @@ var require_stream_transform = __commonJS({
|
|
|
91586
91878
|
var ERR_TRANSFORM_ALREADY_TRANSFORMING = _require$codes.ERR_TRANSFORM_ALREADY_TRANSFORMING;
|
|
91587
91879
|
var ERR_TRANSFORM_WITH_LENGTH_0 = _require$codes.ERR_TRANSFORM_WITH_LENGTH_0;
|
|
91588
91880
|
var Duplex = require_stream_duplex();
|
|
91589
|
-
|
|
91881
|
+
require_inherits()(Transform, Duplex);
|
|
91590
91882
|
function afterTransform(er, data) {
|
|
91591
91883
|
var ts = this._transformState;
|
|
91592
91884
|
ts.transforming = false;
|
|
@@ -91689,7 +91981,7 @@ var require_stream_passthrough = __commonJS({
|
|
|
91689
91981
|
"use strict";
|
|
91690
91982
|
module2.exports = PassThrough;
|
|
91691
91983
|
var Transform = require_stream_transform();
|
|
91692
|
-
|
|
91984
|
+
require_inherits()(PassThrough, Transform);
|
|
91693
91985
|
function PassThrough(options) {
|
|
91694
91986
|
if (!(this instanceof PassThrough))
|
|
91695
91987
|
return new PassThrough(options);
|
|
@@ -92131,7 +92423,7 @@ var require_bl = __commonJS({
|
|
|
92131
92423
|
"../../../../node_modules/.pnpm/bl@4.1.0/node_modules/bl/bl.js"(exports, module2) {
|
|
92132
92424
|
"use strict";
|
|
92133
92425
|
var DuplexStream = require_readable().Duplex;
|
|
92134
|
-
var inherits =
|
|
92426
|
+
var inherits = require_inherits();
|
|
92135
92427
|
var BufferList = require_BufferList();
|
|
92136
92428
|
function BufferListStream(callback) {
|
|
92137
92429
|
if (!(this instanceof BufferListStream)) {
|
|
@@ -92205,7 +92497,7 @@ var require_ora2 = __commonJS({
|
|
|
92205
92497
|
var chalk3 = require_chalk2();
|
|
92206
92498
|
var cliCursor = require_cli_cursor();
|
|
92207
92499
|
var cliSpinners = require_cli_spinners();
|
|
92208
|
-
var logSymbols =
|
|
92500
|
+
var logSymbols = require_log_symbols();
|
|
92209
92501
|
var stripAnsi5 = require_strip_ansi2();
|
|
92210
92502
|
var wcwidth = require_wcwidth();
|
|
92211
92503
|
var isInteractive = require_is_interactive();
|
|
@@ -103999,7 +104291,7 @@ var require_inquirer2 = __commonJS({
|
|
|
103999
104291
|
});
|
|
104000
104292
|
|
|
104001
104293
|
// ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.0.5_4zroxxquta2ktlcjpuoxbtda4m/node_modules/@modern-js/codesmith-formily/dist/js/node/index.js
|
|
104002
|
-
var
|
|
104294
|
+
var require_node9 = __commonJS({
|
|
104003
104295
|
"../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.0.5_4zroxxquta2ktlcjpuoxbtda4m/node_modules/@modern-js/codesmith-formily/dist/js/node/index.js"(exports) {
|
|
104004
104296
|
"use strict";
|
|
104005
104297
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -106748,7 +107040,7 @@ var require_utils11 = __commonJS({
|
|
|
106748
107040
|
});
|
|
106749
107041
|
|
|
106750
107042
|
// ../../../../node_modules/.pnpm/@modern-js+plugin-i18n@1.21.5/node_modules/@modern-js/plugin-i18n/dist/js/node/index.js
|
|
106751
|
-
var
|
|
107043
|
+
var require_node10 = __commonJS({
|
|
106752
107044
|
"../../../../node_modules/.pnpm/@modern-js+plugin-i18n@1.21.5/node_modules/@modern-js/plugin-i18n/dist/js/node/index.js"(exports) {
|
|
106753
107045
|
"use strict";
|
|
106754
107046
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -106901,7 +107193,7 @@ var require_locale = __commonJS({
|
|
|
106901
107193
|
}
|
|
106902
107194
|
});
|
|
106903
107195
|
exports.localeKeys = exports.i18n = void 0;
|
|
106904
|
-
var _pluginI18n =
|
|
107196
|
+
var _pluginI18n = require_node10();
|
|
106905
107197
|
var _zh = require_zh();
|
|
106906
107198
|
var _en = require_en();
|
|
106907
107199
|
var i18n4 = new _pluginI18n.I18n();
|
|
@@ -106961,7 +107253,7 @@ var require_checkUseNvm = __commonJS({
|
|
|
106961
107253
|
exports.checkUseNvm = checkUseNvm;
|
|
106962
107254
|
exports.getNoteVersion = getNoteVersion;
|
|
106963
107255
|
var _path = _interopRequireDefault(require("path"));
|
|
106964
|
-
var _codesmith =
|
|
107256
|
+
var _codesmith = require_node4();
|
|
106965
107257
|
var _utils = require_dist();
|
|
106966
107258
|
var _codesmithApiNpm = require_node();
|
|
106967
107259
|
function _interopRequireDefault(obj) {
|
|
@@ -107017,7 +107309,7 @@ var require_checkUseNvm = __commonJS({
|
|
|
107017
107309
|
});
|
|
107018
107310
|
|
|
107019
107311
|
// ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.0.5_4zroxxquta2ktlcjpuoxbtda4m/node_modules/@modern-js/codesmith-api-app/dist/js/node/index.js
|
|
107020
|
-
var
|
|
107312
|
+
var require_node11 = __commonJS({
|
|
107021
107313
|
"../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.0.5_4zroxxquta2ktlcjpuoxbtda4m/node_modules/@modern-js/codesmith-api-app/dist/js/node/index.js"(exports) {
|
|
107022
107314
|
"use strict";
|
|
107023
107315
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -107029,10 +107321,10 @@ var require_node9 = __commonJS({
|
|
|
107029
107321
|
var _commentJson = require_src2();
|
|
107030
107322
|
var _codesmithApiNpm = require_node();
|
|
107031
107323
|
var _codesmithApiGit = require_node2();
|
|
107032
|
-
var _codesmithApiHandlebars =
|
|
107033
|
-
var _codesmithApiEjs =
|
|
107034
|
-
var _codesmithApiFs =
|
|
107035
|
-
var _codesmithFormily =
|
|
107324
|
+
var _codesmithApiHandlebars = require_node5();
|
|
107325
|
+
var _codesmithApiEjs = require_node6();
|
|
107326
|
+
var _codesmithApiFs = require_node7();
|
|
107327
|
+
var _codesmithFormily = require_node9();
|
|
107036
107328
|
var _inquirer = _interopRequireDefault(require_inquirer3());
|
|
107037
107329
|
var _locale = require_locale();
|
|
107038
107330
|
var _transform = require_transform2();
|
|
@@ -132570,44 +132862,44 @@ var require_dotenv_expand2 = __commonJS({
|
|
|
132570
132862
|
}
|
|
132571
132863
|
});
|
|
132572
132864
|
|
|
132573
|
-
// ../../../../node_modules/.pnpm/caniuse-lite@1.0.
|
|
132865
|
+
// ../../../../node_modules/.pnpm/caniuse-lite@1.0.30001469/node_modules/caniuse-lite/data/browsers.js
|
|
132574
132866
|
var require_browsers3 = __commonJS({
|
|
132575
|
-
"../../../../node_modules/.pnpm/caniuse-lite@1.0.
|
|
132867
|
+
"../../../../node_modules/.pnpm/caniuse-lite@1.0.30001469/node_modules/caniuse-lite/data/browsers.js"(exports, module2) {
|
|
132576
132868
|
module2.exports = { A: "ie", B: "edge", C: "firefox", D: "chrome", E: "safari", F: "opera", G: "ios_saf", H: "op_mini", I: "android", J: "bb", K: "op_mob", L: "and_chr", M: "and_ff", N: "ie_mob", O: "and_uc", P: "samsung", Q: "and_qq", R: "baidu", S: "kaios" };
|
|
132577
132869
|
}
|
|
132578
132870
|
});
|
|
132579
132871
|
|
|
132580
|
-
// ../../../../node_modules/.pnpm/caniuse-lite@1.0.
|
|
132872
|
+
// ../../../../node_modules/.pnpm/caniuse-lite@1.0.30001469/node_modules/caniuse-lite/dist/unpacker/browsers.js
|
|
132581
132873
|
var require_browsers4 = __commonJS({
|
|
132582
|
-
"../../../../node_modules/.pnpm/caniuse-lite@1.0.
|
|
132874
|
+
"../../../../node_modules/.pnpm/caniuse-lite@1.0.30001469/node_modules/caniuse-lite/dist/unpacker/browsers.js"(exports, module2) {
|
|
132583
132875
|
module2.exports.browsers = require_browsers3();
|
|
132584
132876
|
}
|
|
132585
132877
|
});
|
|
132586
132878
|
|
|
132587
|
-
// ../../../../node_modules/.pnpm/caniuse-lite@1.0.
|
|
132879
|
+
// ../../../../node_modules/.pnpm/caniuse-lite@1.0.30001469/node_modules/caniuse-lite/data/browserVersions.js
|
|
132588
132880
|
var require_browserVersions3 = __commonJS({
|
|
132589
|
-
"../../../../node_modules/.pnpm/caniuse-lite@1.0.
|
|
132881
|
+
"../../../../node_modules/.pnpm/caniuse-lite@1.0.30001469/node_modules/caniuse-lite/data/browserVersions.js"(exports, module2) {
|
|
132590
132882
|
module2.exports = { "0": "23", "1": "24", "2": "25", "3": "26", "4": "27", "5": "28", "6": "29", "7": "30", "8": "31", "9": "32", A: "10", B: "11", C: "12", D: "7", E: "8", F: "9", G: "15", H: "111", I: "4", J: "6", K: "13", L: "14", M: "16", N: "17", O: "18", P: "79", Q: "80", R: "81", S: "83", T: "84", U: "85", V: "86", W: "87", X: "88", Y: "89", Z: "90", a: "91", b: "92", c: "93", d: "94", e: "95", f: "110", g: "20", h: "73", i: "96", j: "97", k: "98", l: "99", m: "100", n: "101", o: "102", p: "103", q: "104", r: "105", s: "106", t: "107", u: "108", v: "109", w: "5", x: "19", y: "21", z: "22", AB: "33", BB: "34", CB: "35", DB: "36", EB: "37", FB: "38", GB: "39", HB: "40", IB: "41", JB: "42", KB: "43", LB: "44", MB: "45", NB: "46", OB: "47", PB: "48", QB: "49", RB: "50", SB: "51", TB: "52", UB: "53", VB: "54", WB: "55", XB: "56", YB: "57", ZB: "58", aB: "60", bB: "62", cB: "63", dB: "64", eB: "65", fB: "66", gB: "67", hB: "68", iB: "69", jB: "70", kB: "71", lB: "72", mB: "74", nB: "75", oB: "76", pB: "77", qB: "78", rB: "11.1", sB: "12.1", tB: "16.0", uB: "3", vB: "59", wB: "61", xB: "82", yB: "112", zB: "113", "0B": "3.2", "1B": "10.1", "2B": "13.1", "3B": "15.2-15.3", "4B": "15.4", "5B": "15.5", "6B": "15.6", "7B": "16.1", "8B": "16.2", "9B": "16.3", AC: "16.4", BC: "11.5", CC: "4.2-4.3", DC: "5.5", EC: "2", FC: "3.5", GC: "3.6", HC: "114", IC: "3.1", JC: "5.1", KC: "6.1", LC: "7.1", MC: "9.1", NC: "14.1", OC: "15.1", PC: "TP", QC: "9.5-9.6", RC: "10.0-10.1", SC: "10.5", TC: "10.6", UC: "11.6", VC: "4.0-4.1", WC: "5.0-5.1", XC: "6.0-6.1", YC: "7.0-7.1", ZC: "8.1-8.4", aC: "9.0-9.2", bC: "9.3", cC: "10.0-10.2", dC: "10.3", eC: "11.0-11.2", fC: "11.3-11.4", gC: "12.0-12.1", hC: "12.2-12.5", iC: "13.0-13.1", jC: "13.2", kC: "13.3", lC: "13.4-13.7", mC: "14.0-14.4", nC: "14.5-14.8", oC: "15.0-15.1", pC: "all", qC: "2.1", rC: "2.2", sC: "2.3", tC: "4.1", uC: "4.4", vC: "4.4.3-4.4.4", wC: "13.4", xC: "5.0-5.4", yC: "6.2-6.4", zC: "7.2-7.4", "0C": "8.2", "1C": "9.2", "2C": "11.1-11.2", "3C": "12.0", "4C": "13.0", "5C": "14.0", "6C": "15.0", "7C": "17.0", "8C": "18.0", "9C": "19.0", AD: "13.18", BD: "2.5", CD: "3.0-3.1" };
|
|
132591
132883
|
}
|
|
132592
132884
|
});
|
|
132593
132885
|
|
|
132594
|
-
// ../../../../node_modules/.pnpm/caniuse-lite@1.0.
|
|
132886
|
+
// ../../../../node_modules/.pnpm/caniuse-lite@1.0.30001469/node_modules/caniuse-lite/dist/unpacker/browserVersions.js
|
|
132595
132887
|
var require_browserVersions4 = __commonJS({
|
|
132596
|
-
"../../../../node_modules/.pnpm/caniuse-lite@1.0.
|
|
132888
|
+
"../../../../node_modules/.pnpm/caniuse-lite@1.0.30001469/node_modules/caniuse-lite/dist/unpacker/browserVersions.js"(exports, module2) {
|
|
132597
132889
|
module2.exports.browserVersions = require_browserVersions3();
|
|
132598
132890
|
}
|
|
132599
132891
|
});
|
|
132600
132892
|
|
|
132601
|
-
// ../../../../node_modules/.pnpm/caniuse-lite@1.0.
|
|
132893
|
+
// ../../../../node_modules/.pnpm/caniuse-lite@1.0.30001469/node_modules/caniuse-lite/data/agents.js
|
|
132602
132894
|
var require_agents3 = __commonJS({
|
|
132603
|
-
"../../../../node_modules/.pnpm/caniuse-lite@1.0.
|
|
132895
|
+
"../../../../node_modules/.pnpm/caniuse-lite@1.0.30001469/node_modules/caniuse-lite/data/agents.js"(exports, module2) {
|
|
132604
132896
|
module2.exports = { A: { A: { J: 0.0131217, D: 621152e-8, E: 0.0478029, F: 0.0573634, A: 956057e-8, B: 0.487589, DC: 9298e-6 }, B: "ms", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "DC", "J", "D", "E", "F", "A", "B", "", "", ""], E: "IE", F: { DC: 962323200, J: 998870400, D: 1161129600, E: 1237420800, F: 1300060800, A: 1346716800, B: 1381968e3 } }, B: { A: { C: 3861e-6, K: 4267e-6, L: 4268e-6, G: 3861e-6, M: 3702e-6, N: 3861e-6, O: 0.015444, P: 0, Q: 4298e-6, R: 944e-5, S: 4043e-6, T: 7722e-6, U: 3861e-6, V: 3861e-6, W: 3861e-6, X: 3943e-6, Y: 7722e-6, Z: 3943e-6, a: 3943e-6, b: 7722e-6, c: 4118e-6, d: 3939e-6, e: 3943e-6, i: 3943e-6, j: 3943e-6, k: 3929e-6, l: 3901e-6, m: 0.011829, n: 7886e-6, o: 3943e-6, p: 7722e-6, q: 3861e-6, r: 7722e-6, s: 0.011583, t: 0.073359, u: 0.111969, v: 1.66023, f: 2.23552, H: 0 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "C", "K", "L", "G", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "a", "b", "c", "d", "e", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "f", "H", "", "", ""], E: "Edge", F: { C: 1438128e3, K: 1447286400, L: 1470096e3, G: 1491868800, M: 1508198400, N: 1525046400, O: 1542067200, P: 1579046400, Q: 1581033600, R: 1586736e3, S: 1590019200, T: 1594857600, U: 1598486400, V: 1602201600, W: 1605830400, X: 161136e4, Y: 1614816e3, Z: 1618358400, a: 1622073600, b: 1626912e3, c: 1630627200, d: 1632441600, e: 1634774400, i: 1637539200, j: 1641427200, k: 1643932800, l: 1646265600, m: 1649635200, n: 1651190400, o: 1653955200, p: 1655942400, q: 1659657600, r: 1661990400, s: 1664755200, t: 1666915200, u: 1670198400, v: 1673481600, f: 1675900800, H: 1678665600 }, D: { C: "ms", K: "ms", L: "ms", G: "ms", M: "ms", N: "ms", O: "ms" } }, C: { A: { "0": 4161e-6, "1": 8786e-6, "2": 4118e-6, "3": 4317e-6, "4": 4393e-6, "5": 4418e-6, "6": 8834e-6, "7": 8322e-6, "8": 8928e-6, "9": 4471e-6, EC: 4118e-6, uB: 4271e-6, I: 0.011703, w: 4879e-6, J: 0.020136, D: 5725e-6, E: 4525e-6, F: 533e-5, A: 4283e-6, B: 7722e-6, C: 4471e-6, K: 4486e-6, L: 453e-5, G: 8322e-6, M: 4417e-6, N: 4425e-6, O: 4161e-6, x: 4443e-6, g: 4283e-6, y: 8322e-6, z: 0.013698, AB: 9284e-6, BB: 4707e-6, CB: 9076e-6, DB: 3861e-6, EB: 4783e-6, FB: 3929e-6, GB: 4783e-6, HB: 487e-5, IB: 5029e-6, JB: 47e-4, KB: 0.019305, LB: 3861e-6, MB: 3867e-6, NB: 4525e-6, OB: 4293e-6, PB: 3861e-6, QB: 4538e-6, RB: 8282e-6, SB: 0.011601, TB: 0.046332, UB: 0.011601, VB: 3929e-6, WB: 3974e-6, XB: 3861e-6, YB: 0.011601, ZB: 3939e-6, vB: 3861e-6, aB: 3929e-6, wB: 4356e-6, bB: 4425e-6, cB: 8322e-6, dB: 415e-5, eB: 4267e-6, fB: 3801e-6, gB: 4267e-6, hB: 3861e-6, iB: 415e-5, jB: 4293e-6, kB: 4425e-6, lB: 3861e-6, h: 415e-5, mB: 415e-5, nB: 4318e-6, oB: 4356e-6, pB: 3974e-6, qB: 0.034749, P: 3861e-6, Q: 3861e-6, R: 3861e-6, xB: 3861e-6, S: 3861e-6, T: 3929e-6, U: 4268e-6, V: 3801e-6, W: 0.015444, X: 7722e-6, Y: 3943e-6, Z: 3943e-6, a: 0.011583, b: 3801e-6, c: 7722e-6, d: 0.011583, e: 3773e-6, i: 7886e-6, j: 3901e-6, k: 3901e-6, l: 3861e-6, m: 3861e-6, n: 3861e-6, o: 0.096525, p: 0.042471, q: 7722e-6, r: 0.011583, s: 0.015444, t: 0.019305, u: 0.069498, v: 1.22008, f: 0.814671, H: 7722e-6, yB: 0, zB: 0, FC: 8786e-6, GC: 487e-5 }, B: "moz", C: ["EC", "uB", "FC", "GC", "I", "w", "J", "D", "E", "F", "A", "B", "C", "K", "L", "G", "M", "N", "O", "x", "g", "y", "z", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "AB", "BB", "CB", "DB", "EB", "FB", "GB", "HB", "IB", "JB", "KB", "LB", "MB", "NB", "OB", "PB", "QB", "RB", "SB", "TB", "UB", "VB", "WB", "XB", "YB", "ZB", "vB", "aB", "wB", "bB", "cB", "dB", "eB", "fB", "gB", "hB", "iB", "jB", "kB", "lB", "h", "mB", "nB", "oB", "pB", "qB", "P", "Q", "R", "xB", "S", "T", "U", "V", "W", "X", "Y", "Z", "a", "b", "c", "d", "e", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "f", "H", "yB", "zB", ""], E: "Firefox", F: { "0": 1372118400, "1": 1375747200, "2": 1379376e3, "3": 1386633600, "4": 1391472e3, "5": 1395100800, "6": 1398729600, "7": 1402358400, "8": 1405987200, "9": 1409616e3, EC: 1161648e3, uB: 1213660800, FC: 124632e4, GC: 1264032e3, I: 1300752e3, w: 1308614400, J: 1313452800, D: 1317081600, E: 1317081600, F: 1320710400, A: 1324339200, B: 1327968e3, C: 1331596800, K: 1335225600, L: 1338854400, G: 1342483200, M: 1346112e3, N: 1349740800, O: 1353628800, x: 1357603200, g: 1361232e3, y: 1364860800, z: 1368489600, AB: 1413244800, BB: 1417392e3, CB: 1421107200, DB: 1424736e3, EB: 1428278400, FB: 1431475200, GB: 1435881600, HB: 1439251200, IB: 144288e4, JB: 1446508800, KB: 1450137600, LB: 1453852800, MB: 1457395200, NB: 1461628800, OB: 1465257600, PB: 1470096e3, QB: 1474329600, RB: 1479168e3, SB: 1485216e3, TB: 1488844800, UB: 149256e4, VB: 1497312e3, WB: 1502150400, XB: 1506556800, YB: 1510617600, ZB: 1516665600, vB: 1520985600, aB: 1525824e3, wB: 1529971200, bB: 1536105600, cB: 1540252800, dB: 1544486400, eB: 154872e4, fB: 1552953600, gB: 1558396800, hB: 1562630400, iB: 1567468800, jB: 1571788800, kB: 1575331200, lB: 1578355200, h: 1581379200, mB: 1583798400, nB: 1586304e3, oB: 1588636800, pB: 1591056e3, qB: 1593475200, P: 1595894400, Q: 1598313600, R: 1600732800, xB: 1603152e3, S: 1605571200, T: 1607990400, U: 1611619200, V: 1614038400, W: 1616457600, X: 1618790400, Y: 1622505600, Z: 1626134400, a: 1628553600, b: 1630972800, c: 1633392e3, d: 1635811200, e: 1638835200, i: 1641859200, j: 1644364800, k: 1646697600, l: 1649116800, m: 1651536e3, n: 1653955200, o: 1656374400, p: 1658793600, q: 1661212800, r: 1663632e3, s: 1666051200, t: 1668470400, u: 1670889600, v: 1673913600, f: 1676332800, H: 1678752e3, yB: null, zB: null } }, D: { A: { "0": 8786e-6, "1": 3939e-6, "2": 4461e-6, "3": 4141e-6, "4": 4326e-6, "5": 47e-4, "6": 4538e-6, "7": 8322e-6, "8": 8596e-6, "9": 4566e-6, I: 4706e-6, w: 4879e-6, J: 4879e-6, D: 5591e-6, E: 5591e-6, F: 5591e-6, A: 4534e-6, B: 4464e-6, C: 0.010424, K: 83e-4, L: 4706e-6, G: 0.015087, M: 4393e-6, N: 4393e-6, O: 8652e-6, x: 8322e-6, g: 4393e-6, y: 4317e-6, z: 3901e-6, AB: 4118e-6, BB: 3861e-6, CB: 3861e-6, DB: 4335e-6, EB: 4464e-6, FB: 0.015444, GB: 3867e-6, HB: 0.015444, IB: 3773e-6, JB: 3974e-6, KB: 7722e-6, LB: 7948e-6, MB: 3974e-6, NB: 3867e-6, OB: 7722e-6, PB: 0.019305, QB: 0.03861, RB: 3867e-6, SB: 3929e-6, TB: 7722e-6, UB: 7722e-6, VB: 3867e-6, WB: 7722e-6, XB: 0.069498, YB: 3861e-6, ZB: 0.015772, vB: 3773e-6, aB: 0.015444, wB: 7722e-6, bB: 3773e-6, cB: 7722e-6, dB: 3943e-6, eB: 7722e-6, fB: 0.027027, gB: 7722e-6, hB: 0.011583, iB: 0.054054, jB: 0.019305, kB: 0.015444, lB: 0.023166, h: 0.011583, mB: 0.042471, nB: 0.046332, oB: 0.042471, pB: 0.015444, qB: 0.030888, P: 0.127413, Q: 0.03861, R: 0.042471, S: 0.073359, T: 0.042471, U: 0.088803, V: 0.07722, W: 0.081081, X: 0.027027, Y: 0.03861, Z: 0.046332, a: 0.084942, b: 0.050193, c: 0.065637, d: 0.046332, e: 0.019305, i: 0.03861, j: 0.050193, k: 0.092664, l: 0.050193, m: 0.057915, n: 0.061776, o: 0.084942, p: 0.235521, q: 0.084942, r: 0.131274, s: 0.100386, t: 0.19305, u: 0.984555, v: 12.4054, f: 7.25482, H: 0.015444, yB: 0.019305, zB: 0, HC: 0 }, B: "webkit", C: ["", "", "", "", "", "I", "w", "J", "D", "E", "F", "A", "B", "C", "K", "L", "G", "M", "N", "O", "x", "g", "y", "z", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "AB", "BB", "CB", "DB", "EB", "FB", "GB", "HB", "IB", "JB", "KB", "LB", "MB", "NB", "OB", "PB", "QB", "RB", "SB", "TB", "UB", "VB", "WB", "XB", "YB", "ZB", "vB", "aB", "wB", "bB", "cB", "dB", "eB", "fB", "gB", "hB", "iB", "jB", "kB", "lB", "h", "mB", "nB", "oB", "pB", "qB", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "a", "b", "c", "d", "e", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "f", "H", "yB", "zB", "HC"], E: "Chrome", F: { "0": 1348531200, "1": 1352246400, "2": 1357862400, "3": 1361404800, "4": 1364428800, "5": 1369094400, "6": 1374105600, "7": 1376956800, "8": 1384214400, "9": 1389657600, I: 1264377600, w: 1274745600, J: 1283385600, D: 1287619200, E: 1291248e3, F: 1296777600, A: 1299542400, B: 1303862400, C: 1307404800, K: 1312243200, L: 1316131200, G: 1316131200, M: 1319500800, N: 1323734400, O: 1328659200, x: 1332892800, g: 133704e4, y: 1340668800, z: 1343692800, AB: 1392940800, BB: 1397001600, CB: 1400544e3, DB: 1405468800, EB: 1409011200, FB: 141264e4, GB: 1416268800, HB: 1421798400, IB: 1425513600, JB: 1429401600, KB: 143208e4, LB: 1437523200, MB: 1441152e3, NB: 1444780800, OB: 1449014400, PB: 1453248e3, QB: 1456963200, RB: 1460592e3, SB: 1464134400, TB: 1469059200, UB: 1472601600, VB: 1476230400, WB: 1480550400, XB: 1485302400, YB: 1489017600, ZB: 149256e4, vB: 1496707200, aB: 1500940800, wB: 1504569600, bB: 1508198400, cB: 1512518400, dB: 1516752e3, eB: 1520294400, fB: 1523923200, gB: 1527552e3, hB: 1532390400, iB: 1536019200, jB: 1539648e3, kB: 1543968e3, lB: 154872e4, h: 1552348800, mB: 1555977600, nB: 1559606400, oB: 1564444800, pB: 1568073600, qB: 1571702400, P: 1575936e3, Q: 1580860800, R: 1586304e3, S: 1589846400, T: 1594684800, U: 1598313600, V: 1601942400, W: 1605571200, X: 1611014400, Y: 1614556800, Z: 1618272e3, a: 1621987200, b: 1626739200, c: 1630368e3, d: 1632268800, e: 1634601600, i: 1637020800, j: 1641340800, k: 1643673600, l: 1646092800, m: 1648512e3, n: 1650931200, o: 1653350400, p: 1655769600, q: 1659398400, r: 1661817600, s: 1664236800, t: 1666656e3, u: 166968e4, v: 1673308800, f: 1675728e3, H: 1678147200, yB: null, zB: null, HC: null } }, E: { A: { I: 0, w: 8322e-6, J: 4656e-6, D: 4465e-6, E: 3974e-6, F: 3929e-6, A: 4425e-6, B: 4318e-6, C: 3801e-6, K: 0.019305, L: 0.096525, G: 0.023166, IC: 0, "0B": 8692e-6, JC: 7722e-6, KC: 456e-5, LC: 4283e-6, MC: 0.057915, "1B": 7802e-6, rB: 7722e-6, sB: 0.030888, "2B": 0.169884, NC: 0.258687, OC: 0.042471, "3B": 0.034749, "4B": 0.088803, "5B": 0.169884, "6B": 0.857142, tB: 0.088803, "7B": 0.293436, "8B": 0.922779, "9B": 0.621621, AC: 0, PC: 0 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "IC", "0B", "I", "w", "JC", "J", "KC", "D", "LC", "E", "F", "MC", "A", "1B", "B", "rB", "C", "sB", "K", "2B", "L", "NC", "G", "OC", "3B", "4B", "5B", "6B", "tB", "7B", "8B", "9B", "AC", "PC", ""], E: "Safari", F: { IC: 1205798400, "0B": 1226534400, I: 1244419200, w: 1275868800, JC: 131112e4, J: 1343174400, KC: 13824e5, D: 13824e5, LC: 1410998400, E: 1413417600, F: 1443657600, MC: 1458518400, A: 1474329600, "1B": 1490572800, B: 1505779200, rB: 1522281600, C: 1537142400, sB: 1553472e3, K: 1568851200, "2B": 1585008e3, L: 1600214400, NC: 1619395200, G: 1632096e3, OC: 1635292800, "3B": 1639353600, "4B": 1647216e3, "5B": 1652745600, "6B": 1658275200, tB: 1662940800, "7B": 1666569600, "8B": 1670889600, "9B": 1674432e3, AC: null, PC: null } }, F: { A: { "0": 0.013434, "1": 6702e-6, "2": 6015e-6, "3": 5595e-6, "4": 4393e-6, "5": 3861e-6, "6": 4879e-6, "7": 4879e-6, "8": 3861e-6, "9": 5152e-6, F: 82e-4, B: 0.016581, C: 4317e-6, G: 685e-5, M: 685e-5, N: 685e-5, O: 5014e-6, x: 6015e-6, g: 4879e-6, y: 6597e-6, z: 6597e-6, AB: 5014e-6, BB: 9758e-6, CB: 4879e-6, DB: 7722e-6, EB: 4283e-6, FB: 4367e-6, GB: 4534e-6, HB: 3861e-6, IB: 4227e-6, JB: 4418e-6, KB: 4161e-6, LB: 4227e-6, MB: 4725e-6, NB: 0.011583, OB: 8942e-6, PB: 4707e-6, QB: 4827e-6, RB: 4707e-6, SB: 4707e-6, TB: 4326e-6, UB: 8922e-6, VB: 0.014349, WB: 4425e-6, XB: 472e-5, YB: 4425e-6, ZB: 4425e-6, aB: 472e-5, bB: 4532e-6, cB: 4566e-6, dB: 0.02283, eB: 867e-5, fB: 4656e-6, gB: 4642e-6, hB: 3929e-6, iB: 944e-5, jB: 4293e-6, kB: 3929e-6, lB: 4298e-6, h: 0.096692, mB: 4201e-6, nB: 4141e-6, oB: 4257e-6, pB: 3939e-6, qB: 8236e-6, P: 3855e-6, Q: 3939e-6, R: 8514e-6, xB: 3939e-6, S: 3939e-6, T: 3702e-6, U: 7722e-6, V: 3855e-6, W: 3855e-6, X: 3929e-6, Y: 3861e-6, Z: 0.011703, a: 7546e-6, b: 0.011829, c: 0.069498, d: 0.648648, e: 0.370656, QC: 685e-5, RC: 0, SC: 8392e-6, TC: 4706e-6, rB: 6229e-6, BC: 4879e-6, UC: 8786e-6, sB: 472e-5 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "F", "QC", "RC", "SC", "TC", "B", "rB", "BC", "UC", "C", "sB", "G", "M", "N", "O", "x", "g", "y", "z", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "AB", "BB", "CB", "DB", "EB", "FB", "GB", "HB", "IB", "JB", "KB", "LB", "MB", "NB", "OB", "PB", "QB", "RB", "SB", "TB", "UB", "VB", "WB", "XB", "YB", "ZB", "aB", "bB", "cB", "dB", "eB", "fB", "gB", "hB", "iB", "jB", "kB", "lB", "h", "mB", "nB", "oB", "pB", "qB", "P", "Q", "R", "xB", "S", "T", "U", "V", "W", "X", "Y", "Z", "a", "b", "c", "d", "e", "", "", ""], E: "Opera", F: { "0": 1405987200, "1": 1409616e3, "2": 1413331200, "3": 1417132800, "4": 1422316800, "5": 1425945600, "6": 1430179200, "7": 1433808e3, "8": 1438646400, "9": 1442448e3, F: 1150761600, QC: 1223424e3, RC: 1251763200, SC: 1267488e3, TC: 1277942400, B: 1292457600, rB: 1302566400, BC: 1309219200, UC: 1323129600, C: 1323129600, sB: 1352073600, G: 1372723200, M: 1377561600, N: 1381104e3, O: 1386288e3, x: 1390867200, g: 1393891200, y: 1399334400, z: 1401753600, AB: 1445904e3, BB: 1449100800, CB: 1454371200, DB: 1457308800, EB: 146232e4, FB: 1465344e3, GB: 1470096e3, HB: 1474329600, IB: 1477267200, JB: 1481587200, KB: 1486425600, LB: 1490054400, MB: 1494374400, NB: 1498003200, OB: 1502236800, PB: 1506470400, QB: 1510099200, RB: 1515024e3, SB: 1517961600, TB: 1521676800, UB: 1525910400, VB: 1530144e3, WB: 1534982400, XB: 1537833600, YB: 1543363200, ZB: 1548201600, aB: 1554768e3, bB: 1561593600, cB: 1566259200, dB: 1570406400, eB: 1573689600, fB: 1578441600, gB: 1583971200, hB: 1587513600, iB: 1592956800, jB: 1595894400, kB: 1600128e3, lB: 1603238400, h: 161352e4, mB: 1612224e3, nB: 1616544e3, oB: 1619568e3, pB: 1623715200, qB: 1627948800, P: 1631577600, Q: 1633392e3, R: 1635984e3, xB: 1638403200, S: 1642550400, T: 1644969600, U: 1647993600, V: 1650412800, W: 1652745600, X: 1654646400, Y: 1657152e3, Z: 1660780800, a: 1663113600, b: 1668816e3, c: 1668643200, d: 1671062400, e: 1675209600 }, D: { F: "o", B: "o", C: "o", QC: "o", RC: "o", SC: "o", TC: "o", rB: "o", BC: "o", UC: "o", sB: "o" } }, G: { A: { E: 0, "0B": 0, VC: 0, CC: 156679e-8, WC: 313358e-8, XC: 313358e-8, YC: 0.0125343, ZC: 626717e-8, aC: 0.0172347, bC: 0.0564045, cC: 470038e-8, dC: 0.0987079, eC: 0.0250687, fC: 0.0235019, gC: 0.0219351, hC: 0.394832, iC: 0.0156679, jC: 0.0360362, kC: 0.0344694, lC: 0.108109, mC: 0.282023, nC: 0.532709, oC: 0.153546, "3B": 0.195849, "4B": 0.233452, "5B": 0.412066, "6B": 1.40071, tB: 1.43988, "7B": 3.51431, "8B": 3.62556, "9B": 2.04623, AC: 940075e-8 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "0B", "VC", "CC", "WC", "XC", "YC", "E", "ZC", "aC", "bC", "cC", "dC", "eC", "fC", "gC", "hC", "iC", "jC", "kC", "lC", "mC", "nC", "oC", "3B", "4B", "5B", "6B", "tB", "7B", "8B", "9B", "AC", "", ""], E: "Safari on iOS", F: { "0B": 1270252800, VC: 1283904e3, CC: 1299628800, WC: 1331078400, XC: 1359331200, YC: 1394409600, E: 1410912e3, ZC: 1413763200, aC: 1442361600, bC: 1458518400, cC: 1473724800, dC: 1490572800, eC: 1505779200, fC: 1522281600, gC: 1537142400, hC: 1553472e3, iC: 1568851200, jC: 1572220800, kC: 1580169600, lC: 1585008e3, mC: 1600214400, nC: 1619395200, oC: 1632096e3, "3B": 1639353600, "4B": 1647216e3, "5B": 1652659200, "6B": 1658275200, tB: 1662940800, "7B": 1666569600, "8B": 1670889600, "9B": 1674432e3, AC: null } }, H: { A: { pC: 0.993853 }, B: "o", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "pC", "", "", ""], E: "Opera Mini", F: { pC: 1426464e3 } }, I: { A: { uB: 0, I: 0.019696, H: 0, qC: 0, rC: 0, sC: 0, tC: 0.0787838, CC: 0.0689359, uC: 0, vC: 0.305287 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "qC", "rC", "sC", "uB", "I", "tC", "CC", "uC", "vC", "H", "", "", ""], E: "Android Browser", F: { qC: 1256515200, rC: 1274313600, sC: 1291593600, uB: 1298332800, I: 1318896e3, tC: 1341792e3, CC: 1374624e3, uC: 1386547200, vC: 1401667200, H: 1678147200 } }, J: { A: { D: 0, A: 0 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "D", "A", "", "", ""], E: "Blackberry Browser", F: { D: 1325376e3, A: 1359504e3 } }, K: { A: { A: 0, B: 0, C: 0, h: 0.0111391, rB: 0, BC: 0, sB: 0 }, B: "o", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "A", "B", "rB", "BC", "C", "sB", "h", "", "", ""], E: "Opera Mobile", F: { A: 1287100800, B: 1300752e3, rB: 1314835200, BC: 1318291200, C: 1330300800, sB: 1349740800, h: 1673827200 }, D: { h: "webkit" } }, L: { A: { H: 42.629 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "H", "", "", ""], E: "Chrome for Android", F: { H: 1678147200 } }, M: { A: { f: 0.294672 }, B: "moz", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "f", "", "", ""], E: "Firefox for Android", F: { f: 1676332800 } }, N: { A: { A: 0.0115934, B: 0.022664 }, B: "ms", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "A", "B", "", "", ""], E: "IE Mobile", F: { A: 1340150400, B: 1353456e3 } }, O: { A: { wC: 0.896294 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "wC", "", "", ""], E: "UC Browser for Android", F: { wC: 1634688e3 }, D: { wC: "webkit" } }, P: { A: { I: 0.166372, g: 0, xC: 0.0103543, yC: 0.010304, zC: 0.0519911, "0C": 0.0103584, "1C": 0.0104443, "1B": 0.0105043, "2C": 0.0311947, "3C": 0.0103982, "4C": 0.0311947, "5C": 0.0311947, "6C": 0.0207965, tB: 0.0727876, "7C": 0.0727876, "8C": 0.0935841, "9C": 1.32057 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "I", "xC", "yC", "zC", "0C", "1C", "1B", "2C", "3C", "4C", "5C", "6C", "tB", "7C", "8C", "9C", "g", "", "", ""], E: "Samsung Internet", F: { I: 1461024e3, xC: 1481846400, yC: 1509408e3, zC: 1528329600, "0C": 1546128e3, "1C": 1554163200, "1B": 1567900800, "2C": 1582588800, "3C": 1593475200, "4C": 1605657600, "5C": 1618531200, "6C": 1629072e3, tB: 1640736e3, "7C": 1651708800, "8C": 1659657600, "9C": 1667260800, g: 1677369600 } }, Q: { A: { "2B": 0.12278 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "2B", "", "", ""], E: "QQ Browser", F: { "2B": 1663718400 } }, R: { A: { AD: 0 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "AD", "", "", ""], E: "Baidu Browser", F: { AD: 1663027200 } }, S: { A: { BD: 0.079807, CD: 0 }, B: "moz", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "BD", "CD", "", "", ""], E: "KaiOS Browser", F: { BD: 1527811200, CD: 1631664e3 } } };
|
|
132605
132897
|
}
|
|
132606
132898
|
});
|
|
132607
132899
|
|
|
132608
|
-
// ../../../../node_modules/.pnpm/caniuse-lite@1.0.
|
|
132900
|
+
// ../../../../node_modules/.pnpm/caniuse-lite@1.0.30001469/node_modules/caniuse-lite/dist/unpacker/agents.js
|
|
132609
132901
|
var require_agents4 = __commonJS({
|
|
132610
|
-
"../../../../node_modules/.pnpm/caniuse-lite@1.0.
|
|
132902
|
+
"../../../../node_modules/.pnpm/caniuse-lite@1.0.30001469/node_modules/caniuse-lite/dist/unpacker/agents.js"(exports, module2) {
|
|
132611
132903
|
"use strict";
|
|
132612
132904
|
var browsers = require_browsers4().browsers;
|
|
132613
132905
|
var versions = require_browserVersions4().browserVersions;
|
|
@@ -132654,9 +132946,9 @@ var require_agents4 = __commonJS({
|
|
|
132654
132946
|
}
|
|
132655
132947
|
});
|
|
132656
132948
|
|
|
132657
|
-
// ../../../../node_modules/.pnpm/caniuse-lite@1.0.
|
|
132949
|
+
// ../../../../node_modules/.pnpm/caniuse-lite@1.0.30001469/node_modules/caniuse-lite/dist/lib/statuses.js
|
|
132658
132950
|
var require_statuses2 = __commonJS({
|
|
132659
|
-
"../../../../node_modules/.pnpm/caniuse-lite@1.0.
|
|
132951
|
+
"../../../../node_modules/.pnpm/caniuse-lite@1.0.30001469/node_modules/caniuse-lite/dist/lib/statuses.js"(exports, module2) {
|
|
132660
132952
|
module2.exports = {
|
|
132661
132953
|
1: "ls",
|
|
132662
132954
|
// WHATWG Living Standard
|
|
@@ -132676,9 +132968,9 @@ var require_statuses2 = __commonJS({
|
|
|
132676
132968
|
}
|
|
132677
132969
|
});
|
|
132678
132970
|
|
|
132679
|
-
// ../../../../node_modules/.pnpm/caniuse-lite@1.0.
|
|
132971
|
+
// ../../../../node_modules/.pnpm/caniuse-lite@1.0.30001469/node_modules/caniuse-lite/dist/lib/supported.js
|
|
132680
132972
|
var require_supported2 = __commonJS({
|
|
132681
|
-
"../../../../node_modules/.pnpm/caniuse-lite@1.0.
|
|
132973
|
+
"../../../../node_modules/.pnpm/caniuse-lite@1.0.30001469/node_modules/caniuse-lite/dist/lib/supported.js"(exports, module2) {
|
|
132682
132974
|
module2.exports = {
|
|
132683
132975
|
y: 1 << 0,
|
|
132684
132976
|
n: 1 << 1,
|
|
@@ -132691,9 +132983,9 @@ var require_supported2 = __commonJS({
|
|
|
132691
132983
|
}
|
|
132692
132984
|
});
|
|
132693
132985
|
|
|
132694
|
-
// ../../../../node_modules/.pnpm/caniuse-lite@1.0.
|
|
132986
|
+
// ../../../../node_modules/.pnpm/caniuse-lite@1.0.30001469/node_modules/caniuse-lite/dist/unpacker/feature.js
|
|
132695
132987
|
var require_feature2 = __commonJS({
|
|
132696
|
-
"../../../../node_modules/.pnpm/caniuse-lite@1.0.
|
|
132988
|
+
"../../../../node_modules/.pnpm/caniuse-lite@1.0.30001469/node_modules/caniuse-lite/dist/unpacker/feature.js"(exports, module2) {
|
|
132697
132989
|
"use strict";
|
|
132698
132990
|
var statuses = require_statuses2();
|
|
132699
132991
|
var supported = require_supported2();
|
|
@@ -132737,9 +133029,9 @@ var require_feature2 = __commonJS({
|
|
|
132737
133029
|
}
|
|
132738
133030
|
});
|
|
132739
133031
|
|
|
132740
|
-
// ../../../../node_modules/.pnpm/caniuse-lite@1.0.
|
|
133032
|
+
// ../../../../node_modules/.pnpm/caniuse-lite@1.0.30001469/node_modules/caniuse-lite/dist/unpacker/region.js
|
|
132741
133033
|
var require_region2 = __commonJS({
|
|
132742
|
-
"../../../../node_modules/.pnpm/caniuse-lite@1.0.
|
|
133034
|
+
"../../../../node_modules/.pnpm/caniuse-lite@1.0.30001469/node_modules/caniuse-lite/dist/unpacker/region.js"(exports, module2) {
|
|
132743
133035
|
"use strict";
|
|
132744
133036
|
var browsers = require_browsers4().browsers;
|
|
132745
133037
|
function unpackRegion(packed) {
|
|
@@ -140311,7 +140603,7 @@ var require_filter3 = __commonJS({
|
|
|
140311
140603
|
return r;
|
|
140312
140604
|
};
|
|
140313
140605
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
140314
|
-
var debug_1 =
|
|
140606
|
+
var debug_1 = require_src3();
|
|
140315
140607
|
var mongo_eql_1 = require_mongo_eql();
|
|
140316
140608
|
var ops = require_ops();
|
|
140317
140609
|
var get_type_1 = require_get_type();
|
|
@@ -140471,7 +140763,7 @@ var require_mods = __commonJS({
|
|
|
140471
140763
|
return r;
|
|
140472
140764
|
};
|
|
140473
140765
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
140474
|
-
var debug_1 =
|
|
140766
|
+
var debug_1 = require_src3();
|
|
140475
140767
|
var mongoDot = require_mongo_dot();
|
|
140476
140768
|
var mongo_eql_1 = require_mongo_eql();
|
|
140477
140769
|
var get_type_1 = require_get_type();
|
|
@@ -140932,7 +141224,7 @@ var require_query = __commonJS({
|
|
|
140932
141224
|
"../../../../node_modules/.pnpm/declaration-update@0.0.2/node_modules/declaration-update/dist/query.js"(exports) {
|
|
140933
141225
|
"use strict";
|
|
140934
141226
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
140935
|
-
var debug_1 =
|
|
141227
|
+
var debug_1 = require_src3();
|
|
140936
141228
|
var filter_1 = require_filter3();
|
|
140937
141229
|
var mods = require_mods();
|
|
140938
141230
|
var mongoDot = require_mongo_dot();
|
|
@@ -141039,7 +141331,7 @@ var require_utils12 = __commonJS({
|
|
|
141039
141331
|
});
|
|
141040
141332
|
|
|
141041
141333
|
// ../../../../node_modules/.pnpm/@modern-js+codesmith-api-json@2.0.5/node_modules/@modern-js/codesmith-api-json/dist/js/node/index.js
|
|
141042
|
-
var
|
|
141334
|
+
var require_node12 = __commonJS({
|
|
141043
141335
|
"../../../../node_modules/.pnpm/@modern-js+codesmith-api-json@2.0.5/node_modules/@modern-js/codesmith-api-json/dist/js/node/index.js"(exports) {
|
|
141044
141336
|
"use strict";
|
|
141045
141337
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -141159,7 +141451,7 @@ __export(src_exports, {
|
|
|
141159
141451
|
module.exports = __toCommonJS(src_exports);
|
|
141160
141452
|
var import_path9 = __toESM(require("path"));
|
|
141161
141453
|
var import_lodash11 = __toESM(require_lodash2());
|
|
141162
|
-
var import_codesmith_api_app = __toESM(
|
|
141454
|
+
var import_codesmith_api_app = __toESM(require_node11());
|
|
141163
141455
|
|
|
141164
141456
|
// ../../../cli/plugin-i18n/dist/esm-node/index.js
|
|
141165
141457
|
var import_lodash2 = __toESM(require_lodash2());
|
|
@@ -142277,7 +142569,7 @@ var SolutionSchemas = {
|
|
|
142277
142569
|
|
|
142278
142570
|
// ../../generator-plugin/dist/esm/index.js
|
|
142279
142571
|
var import_path8 = __toESM(require("path"));
|
|
142280
|
-
var import_codesmith7 = __toESM(
|
|
142572
|
+
var import_codesmith7 = __toESM(require_node4());
|
|
142281
142573
|
|
|
142282
142574
|
// ../../generator-utils/dist/esm/index.js
|
|
142283
142575
|
var import_path2 = __toESM(require("path"));
|
|
@@ -142449,8 +142741,8 @@ var import_lodash10 = __toESM(require_lodash2());
|
|
|
142449
142741
|
|
|
142450
142742
|
// ../../generator-plugin/dist/esm/context/file.js
|
|
142451
142743
|
var import_path4 = __toESM(require("path"));
|
|
142452
|
-
var import_codesmith_api_json = __toESM(
|
|
142453
|
-
var import_codesmith = __toESM(
|
|
142744
|
+
var import_codesmith_api_json = __toESM(require_node12());
|
|
142745
|
+
var import_codesmith = __toESM(require_node4());
|
|
142454
142746
|
|
|
142455
142747
|
// ../../generator-plugin/dist/esm/utils/file.js
|
|
142456
142748
|
var import_path3 = __toESM(require("path"));
|
|
@@ -144280,7 +144572,7 @@ function getGeneratorPath(generator, distTag) {
|
|
|
144280
144572
|
|
|
144281
144573
|
// ../../new-action/dist/esm/mwa.js
|
|
144282
144574
|
var import_lodash6 = __toESM(require_lodash2());
|
|
144283
|
-
var import_codesmith2 = __toESM(
|
|
144575
|
+
var import_codesmith2 = __toESM(require_node4());
|
|
144284
144576
|
|
|
144285
144577
|
// ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.0.5_4zroxxquta2ktlcjpuoxbtda4m/node_modules/@modern-js/codesmith-formily/dist/js/modern/index.js
|
|
144286
144578
|
var import_lodash5 = __toESM(require_lodash3());
|
|
@@ -144781,7 +145073,7 @@ var MWANewAction = (options) => __async(void 0, null, function* () {
|
|
|
144781
145073
|
|
|
144782
145074
|
// ../../new-action/dist/esm/module.js
|
|
144783
145075
|
var import_lodash7 = __toESM(require_lodash2());
|
|
144784
|
-
var import_codesmith3 = __toESM(
|
|
145076
|
+
var import_codesmith3 = __toESM(require_node4());
|
|
144785
145077
|
var ModuleNewAction = (options) => __async(void 0, null, function* () {
|
|
144786
145078
|
const {
|
|
144787
145079
|
locale = "zh",
|
|
@@ -144888,7 +145180,7 @@ var ModuleNewAction = (options) => __async(void 0, null, function* () {
|
|
|
144888
145180
|
// ../../new-action/dist/esm/monorepo.js
|
|
144889
145181
|
var import_path6 = __toESM(require("path"));
|
|
144890
145182
|
var import_lodash8 = __toESM(require_lodash2());
|
|
144891
|
-
var import_codesmith4 = __toESM(
|
|
145183
|
+
var import_codesmith4 = __toESM(require_node4());
|
|
144892
145184
|
var REPO_GENERATOR = "@modern-js/repo-generator";
|
|
144893
145185
|
var MonorepoNewAction = (options) => __async(void 0, null, function* () {
|
|
144894
145186
|
const {
|
|
@@ -145458,7 +145750,7 @@ var PluginContext = /* @__PURE__ */ function() {
|
|
|
145458
145750
|
|
|
145459
145751
|
// ../../generator-plugin/dist/esm/utils/index.js
|
|
145460
145752
|
var import_path7 = __toESM(require("path"));
|
|
145461
|
-
var import_codesmith6 = __toESM(
|
|
145753
|
+
var import_codesmith6 = __toESM(require_node4());
|
|
145462
145754
|
|
|
145463
145755
|
// ../../generator-plugin/dist/esm/utils/module.js
|
|
145464
145756
|
var import_lodash9 = __toESM(require_lodash2());
|
|
@@ -145470,7 +145762,7 @@ function requireModule(modulePath) {
|
|
|
145470
145762
|
}
|
|
145471
145763
|
|
|
145472
145764
|
// ../../generator-plugin/dist/esm/utils/getPackageMeta.js
|
|
145473
|
-
var import_codesmith5 = __toESM(
|
|
145765
|
+
var import_codesmith5 = __toESM(require_node4());
|
|
145474
145766
|
function asyncGeneratorStep6(gen, resolve, reject, _next, _throw, key, arg) {
|
|
145475
145767
|
try {
|
|
145476
145768
|
var info = gen[key](arg);
|
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"modern",
|
|
12
12
|
"modern.js"
|
|
13
13
|
],
|
|
14
|
-
"version": "0.0.0-next-
|
|
14
|
+
"version": "0.0.0-next-1679388160221",
|
|
15
15
|
"jsnext:source": "./src/index.ts",
|
|
16
16
|
"main": "./dist/index.js",
|
|
17
17
|
"files": [
|
|
@@ -26,17 +26,17 @@
|
|
|
26
26
|
"@types/node": "^14",
|
|
27
27
|
"jest": "^29",
|
|
28
28
|
"typescript": "^4",
|
|
29
|
-
"@modern-js/base-generator": "0.0.0-next-
|
|
30
|
-
"@modern-js/generator-common": "0.0.0-next-
|
|
31
|
-
"@modern-js/generator-
|
|
32
|
-
"@modern-js/generator-
|
|
33
|
-
"@modern-js/module-generator": "0.0.0-next-
|
|
34
|
-
"@modern-js/monorepo-generator": "0.0.0-next-
|
|
35
|
-
"@modern-js/mwa-generator": "0.0.0-next-
|
|
36
|
-
"@modern-js/doc-generator": "0.0.0-next-
|
|
37
|
-
"@
|
|
38
|
-
"@
|
|
39
|
-
"@scripts/jest-config": "0.0.0-next-
|
|
29
|
+
"@modern-js/base-generator": "0.0.0-next-1679388160221",
|
|
30
|
+
"@modern-js/generator-common": "0.0.0-next-1679388160221",
|
|
31
|
+
"@modern-js/generator-plugin": "0.0.0-next-1679388160221",
|
|
32
|
+
"@modern-js/generator-utils": "0.0.0-next-1679388160221",
|
|
33
|
+
"@modern-js/module-generator": "0.0.0-next-1679388160221",
|
|
34
|
+
"@modern-js/monorepo-generator": "0.0.0-next-1679388160221",
|
|
35
|
+
"@modern-js/mwa-generator": "0.0.0-next-1679388160221",
|
|
36
|
+
"@modern-js/doc-generator": "0.0.0-next-1679388160221",
|
|
37
|
+
"@scripts/build": "0.0.0-next-1679388160221",
|
|
38
|
+
"@modern-js/utils": "0.0.0-next-1679388160221",
|
|
39
|
+
"@scripts/jest-config": "0.0.0-next-1679388160221"
|
|
40
40
|
},
|
|
41
41
|
"sideEffects": false,
|
|
42
42
|
"publishConfig": {
|