@storm-software/workspace-tools 1.49.8 → 1.49.10
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/CHANGELOG.md +14 -0
- package/index.js +20 -15
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/base/index.js +8 -5
- package/src/executors/design-tokens/executor.js +8 -5
- package/src/executors/tsup/executor.js +20 -15
- package/src/executors/tsup-browser/executor.js +20 -15
- package/src/executors/tsup-neutral/executor.js +20 -15
- package/src/executors/tsup-node/executor.js +20 -15
- package/src/executors/typia/executor.js +8 -5
- package/src/generators/browser-library/generator.js +8 -5
- package/src/generators/config-schema/generator.js +8 -5
- package/src/generators/neutral-library/generator.js +8 -5
- package/src/generators/node-library/generator.js +8 -5
- package/src/generators/preset/generator.js +8 -5
package/package.json
CHANGED
package/src/base/index.js
CHANGED
|
@@ -48156,7 +48156,7 @@ ${chalk.bold.hex(config?.colors?.info ? config.colors.info : "#0ea5e9")(">")} ${
|
|
|
48156
48156
|
return (message) => {
|
|
48157
48157
|
console.info(
|
|
48158
48158
|
`
|
|
48159
|
-
${chalk.bold.hex(config?.colors?.success ? config.colors.success : "#087f5b")(">")} ${chalk.bold.bgHex(config?.colors?.success ? config.colors.success : "#087f5b").white(" \
|
|
48159
|
+
${chalk.bold.hex(config?.colors?.success ? config.colors.success : "#087f5b")(">")} ${chalk.bold.bgHex(config?.colors?.success ? config.colors.success : "#087f5b").white(" \u2713 Success ")} ${chalk.hex(
|
|
48160
48160
|
config?.colors?.success ? config.colors.success : "#087f5b"
|
|
48161
48161
|
)(message)}
|
|
48162
48162
|
`
|
|
@@ -48167,7 +48167,7 @@ ${chalk.bold.hex(config?.colors?.success ? config.colors.success : "#087f5b")(">
|
|
|
48167
48167
|
return (message) => {
|
|
48168
48168
|
console.debug(
|
|
48169
48169
|
`
|
|
48170
|
-
${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(">")} ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").white("
|
|
48170
|
+
${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(">")} ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").white(" \u{1F6E0} Debug ")} ${chalk.hex(
|
|
48171
48171
|
config?.colors?.primary ? config.colors.primary : "#1fb2a6"
|
|
48172
48172
|
)(message)}
|
|
48173
48173
|
`
|
|
@@ -48177,7 +48177,7 @@ ${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(">
|
|
|
48177
48177
|
return (message) => {
|
|
48178
48178
|
console.log(
|
|
48179
48179
|
`
|
|
48180
|
-
${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(">")} ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").white("
|
|
48180
|
+
${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(">")} ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").white(" \u2709 System ")} ${chalk.hex(
|
|
48181
48181
|
config?.colors?.primary ? config.colors.primary : "#1fb2a6"
|
|
48182
48182
|
)(message)}
|
|
48183
48183
|
`
|
|
@@ -48197,9 +48197,12 @@ var getStopwatch = (name) => {
|
|
|
48197
48197
|
const end = process.hrtime(start);
|
|
48198
48198
|
console.info(
|
|
48199
48199
|
chalk.dim(
|
|
48200
|
-
|
|
48200
|
+
`
|
|
48201
|
+
\u23F1\uFE0F The${name ? ` ${name}` : ""} process took ${Math.round(
|
|
48201
48202
|
end[0] * 1e3 + end[1] / 1e6
|
|
48202
|
-
)}ms to complete
|
|
48203
|
+
)}ms to complete
|
|
48204
|
+
|
|
48205
|
+
`
|
|
48203
48206
|
)
|
|
48204
48207
|
);
|
|
48205
48208
|
};
|
|
@@ -65874,7 +65874,7 @@ ${chalk.bold.hex(config?.colors?.info ? config.colors.info : "#0ea5e9")(">")} ${
|
|
|
65874
65874
|
return (message) => {
|
|
65875
65875
|
console.info(
|
|
65876
65876
|
`
|
|
65877
|
-
${chalk.bold.hex(config?.colors?.success ? config.colors.success : "#087f5b")(">")} ${chalk.bold.bgHex(config?.colors?.success ? config.colors.success : "#087f5b").white(" \
|
|
65877
|
+
${chalk.bold.hex(config?.colors?.success ? config.colors.success : "#087f5b")(">")} ${chalk.bold.bgHex(config?.colors?.success ? config.colors.success : "#087f5b").white(" \u2713 Success ")} ${chalk.hex(
|
|
65878
65878
|
config?.colors?.success ? config.colors.success : "#087f5b"
|
|
65879
65879
|
)(message)}
|
|
65880
65880
|
`
|
|
@@ -65885,7 +65885,7 @@ ${chalk.bold.hex(config?.colors?.success ? config.colors.success : "#087f5b")(">
|
|
|
65885
65885
|
return (message) => {
|
|
65886
65886
|
console.debug(
|
|
65887
65887
|
`
|
|
65888
|
-
${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(">")} ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").white("
|
|
65888
|
+
${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(">")} ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").white(" \u{1F6E0} Debug ")} ${chalk.hex(
|
|
65889
65889
|
config?.colors?.primary ? config.colors.primary : "#1fb2a6"
|
|
65890
65890
|
)(message)}
|
|
65891
65891
|
`
|
|
@@ -65895,7 +65895,7 @@ ${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(">
|
|
|
65895
65895
|
return (message) => {
|
|
65896
65896
|
console.log(
|
|
65897
65897
|
`
|
|
65898
|
-
${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(">")} ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").white("
|
|
65898
|
+
${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(">")} ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").white(" \u2709 System ")} ${chalk.hex(
|
|
65899
65899
|
config?.colors?.primary ? config.colors.primary : "#1fb2a6"
|
|
65900
65900
|
)(message)}
|
|
65901
65901
|
`
|
|
@@ -65915,9 +65915,12 @@ var getStopwatch = (name) => {
|
|
|
65915
65915
|
const end = process.hrtime(start);
|
|
65916
65916
|
console.info(
|
|
65917
65917
|
chalk.dim(
|
|
65918
|
-
|
|
65918
|
+
`
|
|
65919
|
+
\u23F1\uFE0F The${name ? ` ${name}` : ""} process took ${Math.round(
|
|
65919
65920
|
end[0] * 1e3 + end[1] / 1e6
|
|
65920
|
-
)}ms to complete
|
|
65921
|
+
)}ms to complete
|
|
65922
|
+
|
|
65923
|
+
`
|
|
65921
65924
|
)
|
|
65922
65925
|
);
|
|
65923
65926
|
};
|
|
@@ -44991,9 +44991,9 @@ var require_brace_expansion2 = __commonJS({
|
|
|
44991
44991
|
}
|
|
44992
44992
|
});
|
|
44993
44993
|
|
|
44994
|
-
// node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
44994
|
+
// node_modules/.pnpm/tsup@8.0.0_patch_hash=fecszixvz36nsmruxbct32ggt4_@microsoft+api-extractor@7.38.3_@swc+core@1._obsfvncdmdnopsocrl4rw2efcm/node_modules/tsup/dist/chunk-EPAEWGCP.js
|
|
44995
44995
|
var require_chunk_EPAEWGCP = __commonJS({
|
|
44996
|
-
"node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
44996
|
+
"node_modules/.pnpm/tsup@8.0.0_patch_hash=fecszixvz36nsmruxbct32ggt4_@microsoft+api-extractor@7.38.3_@swc+core@1._obsfvncdmdnopsocrl4rw2efcm/node_modules/tsup/dist/chunk-EPAEWGCP.js"(exports) {
|
|
44997
44997
|
"use strict";
|
|
44998
44998
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
44999
44999
|
var version = "8.0.0";
|
|
@@ -46640,9 +46640,9 @@ var require_resolve_from2 = __commonJS({
|
|
|
46640
46640
|
}
|
|
46641
46641
|
});
|
|
46642
46642
|
|
|
46643
|
-
// node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
46643
|
+
// node_modules/.pnpm/tsup@8.0.0_patch_hash=fecszixvz36nsmruxbct32ggt4_@microsoft+api-extractor@7.38.3_@swc+core@1._obsfvncdmdnopsocrl4rw2efcm/node_modules/tsup/dist/chunk-GQ77QZBO.js
|
|
46644
46644
|
var require_chunk_GQ77QZBO = __commonJS({
|
|
46645
|
-
"node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
46645
|
+
"node_modules/.pnpm/tsup@8.0.0_patch_hash=fecszixvz36nsmruxbct32ggt4_@microsoft+api-extractor@7.38.3_@swc+core@1._obsfvncdmdnopsocrl4rw2efcm/node_modules/tsup/dist/chunk-GQ77QZBO.js"(exports) {
|
|
46646
46646
|
"use strict";
|
|
46647
46647
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
46648
46648
|
function _interopRequireDefault(obj) {
|
|
@@ -46920,9 +46920,9 @@ var require_chunk_GQ77QZBO = __commonJS({
|
|
|
46920
46920
|
}
|
|
46921
46921
|
});
|
|
46922
46922
|
|
|
46923
|
-
// node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
46923
|
+
// node_modules/.pnpm/tsup@8.0.0_patch_hash=fecszixvz36nsmruxbct32ggt4_@microsoft+api-extractor@7.38.3_@swc+core@1._obsfvncdmdnopsocrl4rw2efcm/node_modules/tsup/dist/chunk-UIX4URMV.js
|
|
46924
46924
|
var require_chunk_UIX4URMV = __commonJS({
|
|
46925
|
-
"node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
46925
|
+
"node_modules/.pnpm/tsup@8.0.0_patch_hash=fecszixvz36nsmruxbct32ggt4_@microsoft+api-extractor@7.38.3_@swc+core@1._obsfvncdmdnopsocrl4rw2efcm/node_modules/tsup/dist/chunk-UIX4URMV.js"(exports) {
|
|
46926
46926
|
"use strict";
|
|
46927
46927
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
46928
46928
|
function _interopRequireWildcard(obj) {
|
|
@@ -47856,9 +47856,9 @@ var require_dist3 = __commonJS({
|
|
|
47856
47856
|
}
|
|
47857
47857
|
});
|
|
47858
47858
|
|
|
47859
|
-
// node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
47859
|
+
// node_modules/.pnpm/tsup@8.0.0_patch_hash=fecszixvz36nsmruxbct32ggt4_@microsoft+api-extractor@7.38.3_@swc+core@1._obsfvncdmdnopsocrl4rw2efcm/node_modules/tsup/dist/chunk-7G76EW2R.js
|
|
47860
47860
|
var require_chunk_7G76EW2R = __commonJS({
|
|
47861
|
-
"node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
47861
|
+
"node_modules/.pnpm/tsup@8.0.0_patch_hash=fecszixvz36nsmruxbct32ggt4_@microsoft+api-extractor@7.38.3_@swc+core@1._obsfvncdmdnopsocrl4rw2efcm/node_modules/tsup/dist/chunk-7G76EW2R.js"(exports) {
|
|
47862
47862
|
"use strict";
|
|
47863
47863
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
47864
47864
|
function _interopRequireDefault(obj) {
|
|
@@ -101058,9 +101058,9 @@ var require_chokidar = __commonJS({
|
|
|
101058
101058
|
}
|
|
101059
101059
|
});
|
|
101060
101060
|
|
|
101061
|
-
// node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
101061
|
+
// node_modules/.pnpm/tsup@8.0.0_patch_hash=fecszixvz36nsmruxbct32ggt4_@microsoft+api-extractor@7.38.3_@swc+core@1._obsfvncdmdnopsocrl4rw2efcm/node_modules/tsup/dist/index.js
|
|
101062
101062
|
var require_dist6 = __commonJS({
|
|
101063
|
-
"node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
101063
|
+
"node_modules/.pnpm/tsup@8.0.0_patch_hash=fecszixvz36nsmruxbct32ggt4_@microsoft+api-extractor@7.38.3_@swc+core@1._obsfvncdmdnopsocrl4rw2efcm/node_modules/tsup/dist/index.js"(exports) {
|
|
101064
101064
|
"use strict";
|
|
101065
101065
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
101066
101066
|
function _interopRequireDefault(obj) {
|
|
@@ -102862,6 +102862,7 @@ var require_dist6 = __commonJS({
|
|
|
102862
102862
|
pure: typeof options.pure === "string" ? [options.pure] : options.pure,
|
|
102863
102863
|
metafile: true
|
|
102864
102864
|
});
|
|
102865
|
+
await new Promise((r) => setTimeout(r, 100));
|
|
102865
102866
|
} catch (error) {
|
|
102866
102867
|
logger3.error(format2, "Build failed");
|
|
102867
102868
|
throw error;
|
|
@@ -107887,7 +107888,7 @@ ${chalk.bold.hex(config?.colors?.info ? config.colors.info : "#0ea5e9")(">")} ${
|
|
|
107887
107888
|
return (message) => {
|
|
107888
107889
|
console.info(
|
|
107889
107890
|
`
|
|
107890
|
-
${chalk.bold.hex(config?.colors?.success ? config.colors.success : "#087f5b")(">")} ${chalk.bold.bgHex(config?.colors?.success ? config.colors.success : "#087f5b").white(" \
|
|
107891
|
+
${chalk.bold.hex(config?.colors?.success ? config.colors.success : "#087f5b")(">")} ${chalk.bold.bgHex(config?.colors?.success ? config.colors.success : "#087f5b").white(" \u2713 Success ")} ${chalk.hex(
|
|
107891
107892
|
config?.colors?.success ? config.colors.success : "#087f5b"
|
|
107892
107893
|
)(message)}
|
|
107893
107894
|
`
|
|
@@ -107898,7 +107899,7 @@ ${chalk.bold.hex(config?.colors?.success ? config.colors.success : "#087f5b")(">
|
|
|
107898
107899
|
return (message) => {
|
|
107899
107900
|
console.debug(
|
|
107900
107901
|
`
|
|
107901
|
-
${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(">")} ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").white("
|
|
107902
|
+
${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(">")} ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").white(" \u{1F6E0} Debug ")} ${chalk.hex(
|
|
107902
107903
|
config?.colors?.primary ? config.colors.primary : "#1fb2a6"
|
|
107903
107904
|
)(message)}
|
|
107904
107905
|
`
|
|
@@ -107908,7 +107909,7 @@ ${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(">
|
|
|
107908
107909
|
return (message) => {
|
|
107909
107910
|
console.log(
|
|
107910
107911
|
`
|
|
107911
|
-
${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(">")} ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").white("
|
|
107912
|
+
${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(">")} ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").white(" \u2709 System ")} ${chalk.hex(
|
|
107912
107913
|
config?.colors?.primary ? config.colors.primary : "#1fb2a6"
|
|
107913
107914
|
)(message)}
|
|
107914
107915
|
`
|
|
@@ -107928,9 +107929,12 @@ var getStopwatch = (name) => {
|
|
|
107928
107929
|
const end = process.hrtime(start);
|
|
107929
107930
|
console.info(
|
|
107930
107931
|
chalk.dim(
|
|
107931
|
-
|
|
107932
|
+
`
|
|
107933
|
+
\u23F1\uFE0F The${name ? ` ${name}` : ""} process took ${Math.round(
|
|
107932
107934
|
end[0] * 1e3 + end[1] / 1e6
|
|
107933
|
-
)}ms to complete
|
|
107935
|
+
)}ms to complete
|
|
107936
|
+
|
|
107937
|
+
`
|
|
107934
107938
|
)
|
|
107935
107939
|
);
|
|
107936
107940
|
};
|
|
@@ -116684,6 +116688,7 @@ var build = async (options, config) => {
|
|
|
116684
116688
|
console.log("\u2699\uFE0F Tsup build config: \n", options, "\n");
|
|
116685
116689
|
}
|
|
116686
116690
|
await (0, import_tsup.build)(options);
|
|
116691
|
+
await new Promise((r) => setTimeout(r, 100));
|
|
116687
116692
|
}
|
|
116688
116693
|
};
|
|
116689
116694
|
var applyDefaultOptions = (options) => {
|
|
@@ -44991,9 +44991,9 @@ var require_brace_expansion2 = __commonJS({
|
|
|
44991
44991
|
}
|
|
44992
44992
|
});
|
|
44993
44993
|
|
|
44994
|
-
// node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
44994
|
+
// node_modules/.pnpm/tsup@8.0.0_patch_hash=fecszixvz36nsmruxbct32ggt4_@microsoft+api-extractor@7.38.3_@swc+core@1._obsfvncdmdnopsocrl4rw2efcm/node_modules/tsup/dist/chunk-EPAEWGCP.js
|
|
44995
44995
|
var require_chunk_EPAEWGCP = __commonJS({
|
|
44996
|
-
"node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
44996
|
+
"node_modules/.pnpm/tsup@8.0.0_patch_hash=fecszixvz36nsmruxbct32ggt4_@microsoft+api-extractor@7.38.3_@swc+core@1._obsfvncdmdnopsocrl4rw2efcm/node_modules/tsup/dist/chunk-EPAEWGCP.js"(exports) {
|
|
44997
44997
|
"use strict";
|
|
44998
44998
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
44999
44999
|
var version = "8.0.0";
|
|
@@ -46640,9 +46640,9 @@ var require_resolve_from2 = __commonJS({
|
|
|
46640
46640
|
}
|
|
46641
46641
|
});
|
|
46642
46642
|
|
|
46643
|
-
// node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
46643
|
+
// node_modules/.pnpm/tsup@8.0.0_patch_hash=fecszixvz36nsmruxbct32ggt4_@microsoft+api-extractor@7.38.3_@swc+core@1._obsfvncdmdnopsocrl4rw2efcm/node_modules/tsup/dist/chunk-GQ77QZBO.js
|
|
46644
46644
|
var require_chunk_GQ77QZBO = __commonJS({
|
|
46645
|
-
"node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
46645
|
+
"node_modules/.pnpm/tsup@8.0.0_patch_hash=fecszixvz36nsmruxbct32ggt4_@microsoft+api-extractor@7.38.3_@swc+core@1._obsfvncdmdnopsocrl4rw2efcm/node_modules/tsup/dist/chunk-GQ77QZBO.js"(exports) {
|
|
46646
46646
|
"use strict";
|
|
46647
46647
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
46648
46648
|
function _interopRequireDefault(obj) {
|
|
@@ -46920,9 +46920,9 @@ var require_chunk_GQ77QZBO = __commonJS({
|
|
|
46920
46920
|
}
|
|
46921
46921
|
});
|
|
46922
46922
|
|
|
46923
|
-
// node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
46923
|
+
// node_modules/.pnpm/tsup@8.0.0_patch_hash=fecszixvz36nsmruxbct32ggt4_@microsoft+api-extractor@7.38.3_@swc+core@1._obsfvncdmdnopsocrl4rw2efcm/node_modules/tsup/dist/chunk-UIX4URMV.js
|
|
46924
46924
|
var require_chunk_UIX4URMV = __commonJS({
|
|
46925
|
-
"node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
46925
|
+
"node_modules/.pnpm/tsup@8.0.0_patch_hash=fecszixvz36nsmruxbct32ggt4_@microsoft+api-extractor@7.38.3_@swc+core@1._obsfvncdmdnopsocrl4rw2efcm/node_modules/tsup/dist/chunk-UIX4URMV.js"(exports) {
|
|
46926
46926
|
"use strict";
|
|
46927
46927
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
46928
46928
|
function _interopRequireWildcard(obj) {
|
|
@@ -47856,9 +47856,9 @@ var require_dist3 = __commonJS({
|
|
|
47856
47856
|
}
|
|
47857
47857
|
});
|
|
47858
47858
|
|
|
47859
|
-
// node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
47859
|
+
// node_modules/.pnpm/tsup@8.0.0_patch_hash=fecszixvz36nsmruxbct32ggt4_@microsoft+api-extractor@7.38.3_@swc+core@1._obsfvncdmdnopsocrl4rw2efcm/node_modules/tsup/dist/chunk-7G76EW2R.js
|
|
47860
47860
|
var require_chunk_7G76EW2R = __commonJS({
|
|
47861
|
-
"node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
47861
|
+
"node_modules/.pnpm/tsup@8.0.0_patch_hash=fecszixvz36nsmruxbct32ggt4_@microsoft+api-extractor@7.38.3_@swc+core@1._obsfvncdmdnopsocrl4rw2efcm/node_modules/tsup/dist/chunk-7G76EW2R.js"(exports) {
|
|
47862
47862
|
"use strict";
|
|
47863
47863
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
47864
47864
|
function _interopRequireDefault(obj) {
|
|
@@ -101058,9 +101058,9 @@ var require_chokidar = __commonJS({
|
|
|
101058
101058
|
}
|
|
101059
101059
|
});
|
|
101060
101060
|
|
|
101061
|
-
// node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
101061
|
+
// node_modules/.pnpm/tsup@8.0.0_patch_hash=fecszixvz36nsmruxbct32ggt4_@microsoft+api-extractor@7.38.3_@swc+core@1._obsfvncdmdnopsocrl4rw2efcm/node_modules/tsup/dist/index.js
|
|
101062
101062
|
var require_dist6 = __commonJS({
|
|
101063
|
-
"node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
101063
|
+
"node_modules/.pnpm/tsup@8.0.0_patch_hash=fecszixvz36nsmruxbct32ggt4_@microsoft+api-extractor@7.38.3_@swc+core@1._obsfvncdmdnopsocrl4rw2efcm/node_modules/tsup/dist/index.js"(exports) {
|
|
101064
101064
|
"use strict";
|
|
101065
101065
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
101066
101066
|
function _interopRequireDefault(obj) {
|
|
@@ -102862,6 +102862,7 @@ var require_dist6 = __commonJS({
|
|
|
102862
102862
|
pure: typeof options.pure === "string" ? [options.pure] : options.pure,
|
|
102863
102863
|
metafile: true
|
|
102864
102864
|
});
|
|
102865
|
+
await new Promise((r) => setTimeout(r, 100));
|
|
102865
102866
|
} catch (error) {
|
|
102866
102867
|
logger3.error(format2, "Build failed");
|
|
102867
102868
|
throw error;
|
|
@@ -107878,7 +107879,7 @@ ${chalk.bold.hex(config?.colors?.info ? config.colors.info : "#0ea5e9")(">")} ${
|
|
|
107878
107879
|
return (message) => {
|
|
107879
107880
|
console.info(
|
|
107880
107881
|
`
|
|
107881
|
-
${chalk.bold.hex(config?.colors?.success ? config.colors.success : "#087f5b")(">")} ${chalk.bold.bgHex(config?.colors?.success ? config.colors.success : "#087f5b").white(" \
|
|
107882
|
+
${chalk.bold.hex(config?.colors?.success ? config.colors.success : "#087f5b")(">")} ${chalk.bold.bgHex(config?.colors?.success ? config.colors.success : "#087f5b").white(" \u2713 Success ")} ${chalk.hex(
|
|
107882
107883
|
config?.colors?.success ? config.colors.success : "#087f5b"
|
|
107883
107884
|
)(message)}
|
|
107884
107885
|
`
|
|
@@ -107889,7 +107890,7 @@ ${chalk.bold.hex(config?.colors?.success ? config.colors.success : "#087f5b")(">
|
|
|
107889
107890
|
return (message) => {
|
|
107890
107891
|
console.debug(
|
|
107891
107892
|
`
|
|
107892
|
-
${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(">")} ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").white("
|
|
107893
|
+
${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(">")} ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").white(" \u{1F6E0} Debug ")} ${chalk.hex(
|
|
107893
107894
|
config?.colors?.primary ? config.colors.primary : "#1fb2a6"
|
|
107894
107895
|
)(message)}
|
|
107895
107896
|
`
|
|
@@ -107899,7 +107900,7 @@ ${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(">
|
|
|
107899
107900
|
return (message) => {
|
|
107900
107901
|
console.log(
|
|
107901
107902
|
`
|
|
107902
|
-
${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(">")} ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").white("
|
|
107903
|
+
${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(">")} ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").white(" \u2709 System ")} ${chalk.hex(
|
|
107903
107904
|
config?.colors?.primary ? config.colors.primary : "#1fb2a6"
|
|
107904
107905
|
)(message)}
|
|
107905
107906
|
`
|
|
@@ -107919,9 +107920,12 @@ var getStopwatch = (name) => {
|
|
|
107919
107920
|
const end = process.hrtime(start);
|
|
107920
107921
|
console.info(
|
|
107921
107922
|
chalk.dim(
|
|
107922
|
-
|
|
107923
|
+
`
|
|
107924
|
+
\u23F1\uFE0F The${name ? ` ${name}` : ""} process took ${Math.round(
|
|
107923
107925
|
end[0] * 1e3 + end[1] / 1e6
|
|
107924
|
-
)}ms to complete
|
|
107926
|
+
)}ms to complete
|
|
107927
|
+
|
|
107928
|
+
`
|
|
107925
107929
|
)
|
|
107926
107930
|
);
|
|
107927
107931
|
};
|
|
@@ -116715,6 +116719,7 @@ var build = async (options, config) => {
|
|
|
116715
116719
|
console.log("\u2699\uFE0F Tsup build config: \n", options, "\n");
|
|
116716
116720
|
}
|
|
116717
116721
|
await (0, import_tsup.build)(options);
|
|
116722
|
+
await new Promise((r) => setTimeout(r, 100));
|
|
116718
116723
|
}
|
|
116719
116724
|
};
|
|
116720
116725
|
var applyDefaultOptions = (options) => {
|
|
@@ -44991,9 +44991,9 @@ var require_brace_expansion2 = __commonJS({
|
|
|
44991
44991
|
}
|
|
44992
44992
|
});
|
|
44993
44993
|
|
|
44994
|
-
// node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
44994
|
+
// node_modules/.pnpm/tsup@8.0.0_patch_hash=fecszixvz36nsmruxbct32ggt4_@microsoft+api-extractor@7.38.3_@swc+core@1._obsfvncdmdnopsocrl4rw2efcm/node_modules/tsup/dist/chunk-EPAEWGCP.js
|
|
44995
44995
|
var require_chunk_EPAEWGCP = __commonJS({
|
|
44996
|
-
"node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
44996
|
+
"node_modules/.pnpm/tsup@8.0.0_patch_hash=fecszixvz36nsmruxbct32ggt4_@microsoft+api-extractor@7.38.3_@swc+core@1._obsfvncdmdnopsocrl4rw2efcm/node_modules/tsup/dist/chunk-EPAEWGCP.js"(exports) {
|
|
44997
44997
|
"use strict";
|
|
44998
44998
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
44999
44999
|
var version = "8.0.0";
|
|
@@ -46640,9 +46640,9 @@ var require_resolve_from2 = __commonJS({
|
|
|
46640
46640
|
}
|
|
46641
46641
|
});
|
|
46642
46642
|
|
|
46643
|
-
// node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
46643
|
+
// node_modules/.pnpm/tsup@8.0.0_patch_hash=fecszixvz36nsmruxbct32ggt4_@microsoft+api-extractor@7.38.3_@swc+core@1._obsfvncdmdnopsocrl4rw2efcm/node_modules/tsup/dist/chunk-GQ77QZBO.js
|
|
46644
46644
|
var require_chunk_GQ77QZBO = __commonJS({
|
|
46645
|
-
"node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
46645
|
+
"node_modules/.pnpm/tsup@8.0.0_patch_hash=fecszixvz36nsmruxbct32ggt4_@microsoft+api-extractor@7.38.3_@swc+core@1._obsfvncdmdnopsocrl4rw2efcm/node_modules/tsup/dist/chunk-GQ77QZBO.js"(exports) {
|
|
46646
46646
|
"use strict";
|
|
46647
46647
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
46648
46648
|
function _interopRequireDefault(obj) {
|
|
@@ -46920,9 +46920,9 @@ var require_chunk_GQ77QZBO = __commonJS({
|
|
|
46920
46920
|
}
|
|
46921
46921
|
});
|
|
46922
46922
|
|
|
46923
|
-
// node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
46923
|
+
// node_modules/.pnpm/tsup@8.0.0_patch_hash=fecszixvz36nsmruxbct32ggt4_@microsoft+api-extractor@7.38.3_@swc+core@1._obsfvncdmdnopsocrl4rw2efcm/node_modules/tsup/dist/chunk-UIX4URMV.js
|
|
46924
46924
|
var require_chunk_UIX4URMV = __commonJS({
|
|
46925
|
-
"node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
46925
|
+
"node_modules/.pnpm/tsup@8.0.0_patch_hash=fecszixvz36nsmruxbct32ggt4_@microsoft+api-extractor@7.38.3_@swc+core@1._obsfvncdmdnopsocrl4rw2efcm/node_modules/tsup/dist/chunk-UIX4URMV.js"(exports) {
|
|
46926
46926
|
"use strict";
|
|
46927
46927
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
46928
46928
|
function _interopRequireWildcard(obj) {
|
|
@@ -47856,9 +47856,9 @@ var require_dist3 = __commonJS({
|
|
|
47856
47856
|
}
|
|
47857
47857
|
});
|
|
47858
47858
|
|
|
47859
|
-
// node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
47859
|
+
// node_modules/.pnpm/tsup@8.0.0_patch_hash=fecszixvz36nsmruxbct32ggt4_@microsoft+api-extractor@7.38.3_@swc+core@1._obsfvncdmdnopsocrl4rw2efcm/node_modules/tsup/dist/chunk-7G76EW2R.js
|
|
47860
47860
|
var require_chunk_7G76EW2R = __commonJS({
|
|
47861
|
-
"node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
47861
|
+
"node_modules/.pnpm/tsup@8.0.0_patch_hash=fecszixvz36nsmruxbct32ggt4_@microsoft+api-extractor@7.38.3_@swc+core@1._obsfvncdmdnopsocrl4rw2efcm/node_modules/tsup/dist/chunk-7G76EW2R.js"(exports) {
|
|
47862
47862
|
"use strict";
|
|
47863
47863
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
47864
47864
|
function _interopRequireDefault(obj) {
|
|
@@ -101058,9 +101058,9 @@ var require_chokidar = __commonJS({
|
|
|
101058
101058
|
}
|
|
101059
101059
|
});
|
|
101060
101060
|
|
|
101061
|
-
// node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
101061
|
+
// node_modules/.pnpm/tsup@8.0.0_patch_hash=fecszixvz36nsmruxbct32ggt4_@microsoft+api-extractor@7.38.3_@swc+core@1._obsfvncdmdnopsocrl4rw2efcm/node_modules/tsup/dist/index.js
|
|
101062
101062
|
var require_dist6 = __commonJS({
|
|
101063
|
-
"node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
101063
|
+
"node_modules/.pnpm/tsup@8.0.0_patch_hash=fecszixvz36nsmruxbct32ggt4_@microsoft+api-extractor@7.38.3_@swc+core@1._obsfvncdmdnopsocrl4rw2efcm/node_modules/tsup/dist/index.js"(exports) {
|
|
101064
101064
|
"use strict";
|
|
101065
101065
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
101066
101066
|
function _interopRequireDefault(obj) {
|
|
@@ -102862,6 +102862,7 @@ var require_dist6 = __commonJS({
|
|
|
102862
102862
|
pure: typeof options.pure === "string" ? [options.pure] : options.pure,
|
|
102863
102863
|
metafile: true
|
|
102864
102864
|
});
|
|
102865
|
+
await new Promise((r) => setTimeout(r, 100));
|
|
102865
102866
|
} catch (error) {
|
|
102866
102867
|
logger3.error(format2, "Build failed");
|
|
102867
102868
|
throw error;
|
|
@@ -107878,7 +107879,7 @@ ${chalk.bold.hex(config?.colors?.info ? config.colors.info : "#0ea5e9")(">")} ${
|
|
|
107878
107879
|
return (message) => {
|
|
107879
107880
|
console.info(
|
|
107880
107881
|
`
|
|
107881
|
-
${chalk.bold.hex(config?.colors?.success ? config.colors.success : "#087f5b")(">")} ${chalk.bold.bgHex(config?.colors?.success ? config.colors.success : "#087f5b").white(" \
|
|
107882
|
+
${chalk.bold.hex(config?.colors?.success ? config.colors.success : "#087f5b")(">")} ${chalk.bold.bgHex(config?.colors?.success ? config.colors.success : "#087f5b").white(" \u2713 Success ")} ${chalk.hex(
|
|
107882
107883
|
config?.colors?.success ? config.colors.success : "#087f5b"
|
|
107883
107884
|
)(message)}
|
|
107884
107885
|
`
|
|
@@ -107889,7 +107890,7 @@ ${chalk.bold.hex(config?.colors?.success ? config.colors.success : "#087f5b")(">
|
|
|
107889
107890
|
return (message) => {
|
|
107890
107891
|
console.debug(
|
|
107891
107892
|
`
|
|
107892
|
-
${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(">")} ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").white("
|
|
107893
|
+
${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(">")} ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").white(" \u{1F6E0} Debug ")} ${chalk.hex(
|
|
107893
107894
|
config?.colors?.primary ? config.colors.primary : "#1fb2a6"
|
|
107894
107895
|
)(message)}
|
|
107895
107896
|
`
|
|
@@ -107899,7 +107900,7 @@ ${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(">
|
|
|
107899
107900
|
return (message) => {
|
|
107900
107901
|
console.log(
|
|
107901
107902
|
`
|
|
107902
|
-
${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(">")} ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").white("
|
|
107903
|
+
${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(">")} ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").white(" \u2709 System ")} ${chalk.hex(
|
|
107903
107904
|
config?.colors?.primary ? config.colors.primary : "#1fb2a6"
|
|
107904
107905
|
)(message)}
|
|
107905
107906
|
`
|
|
@@ -107919,9 +107920,12 @@ var getStopwatch = (name) => {
|
|
|
107919
107920
|
const end = process.hrtime(start);
|
|
107920
107921
|
console.info(
|
|
107921
107922
|
chalk.dim(
|
|
107922
|
-
|
|
107923
|
+
`
|
|
107924
|
+
\u23F1\uFE0F The${name ? ` ${name}` : ""} process took ${Math.round(
|
|
107923
107925
|
end[0] * 1e3 + end[1] / 1e6
|
|
107924
|
-
)}ms to complete
|
|
107926
|
+
)}ms to complete
|
|
107927
|
+
|
|
107928
|
+
`
|
|
107925
107929
|
)
|
|
107926
107930
|
);
|
|
107927
107931
|
};
|
|
@@ -116715,6 +116719,7 @@ var build = async (options, config) => {
|
|
|
116715
116719
|
console.log("\u2699\uFE0F Tsup build config: \n", options, "\n");
|
|
116716
116720
|
}
|
|
116717
116721
|
await (0, import_tsup.build)(options);
|
|
116722
|
+
await new Promise((r) => setTimeout(r, 100));
|
|
116718
116723
|
}
|
|
116719
116724
|
};
|
|
116720
116725
|
var applyDefaultOptions = (options) => {
|
|
@@ -44991,9 +44991,9 @@ var require_brace_expansion2 = __commonJS({
|
|
|
44991
44991
|
}
|
|
44992
44992
|
});
|
|
44993
44993
|
|
|
44994
|
-
// node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
44994
|
+
// node_modules/.pnpm/tsup@8.0.0_patch_hash=fecszixvz36nsmruxbct32ggt4_@microsoft+api-extractor@7.38.3_@swc+core@1._obsfvncdmdnopsocrl4rw2efcm/node_modules/tsup/dist/chunk-EPAEWGCP.js
|
|
44995
44995
|
var require_chunk_EPAEWGCP = __commonJS({
|
|
44996
|
-
"node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
44996
|
+
"node_modules/.pnpm/tsup@8.0.0_patch_hash=fecszixvz36nsmruxbct32ggt4_@microsoft+api-extractor@7.38.3_@swc+core@1._obsfvncdmdnopsocrl4rw2efcm/node_modules/tsup/dist/chunk-EPAEWGCP.js"(exports) {
|
|
44997
44997
|
"use strict";
|
|
44998
44998
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
44999
44999
|
var version = "8.0.0";
|
|
@@ -46640,9 +46640,9 @@ var require_resolve_from2 = __commonJS({
|
|
|
46640
46640
|
}
|
|
46641
46641
|
});
|
|
46642
46642
|
|
|
46643
|
-
// node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
46643
|
+
// node_modules/.pnpm/tsup@8.0.0_patch_hash=fecszixvz36nsmruxbct32ggt4_@microsoft+api-extractor@7.38.3_@swc+core@1._obsfvncdmdnopsocrl4rw2efcm/node_modules/tsup/dist/chunk-GQ77QZBO.js
|
|
46644
46644
|
var require_chunk_GQ77QZBO = __commonJS({
|
|
46645
|
-
"node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
46645
|
+
"node_modules/.pnpm/tsup@8.0.0_patch_hash=fecszixvz36nsmruxbct32ggt4_@microsoft+api-extractor@7.38.3_@swc+core@1._obsfvncdmdnopsocrl4rw2efcm/node_modules/tsup/dist/chunk-GQ77QZBO.js"(exports) {
|
|
46646
46646
|
"use strict";
|
|
46647
46647
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
46648
46648
|
function _interopRequireDefault(obj) {
|
|
@@ -46920,9 +46920,9 @@ var require_chunk_GQ77QZBO = __commonJS({
|
|
|
46920
46920
|
}
|
|
46921
46921
|
});
|
|
46922
46922
|
|
|
46923
|
-
// node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
46923
|
+
// node_modules/.pnpm/tsup@8.0.0_patch_hash=fecszixvz36nsmruxbct32ggt4_@microsoft+api-extractor@7.38.3_@swc+core@1._obsfvncdmdnopsocrl4rw2efcm/node_modules/tsup/dist/chunk-UIX4URMV.js
|
|
46924
46924
|
var require_chunk_UIX4URMV = __commonJS({
|
|
46925
|
-
"node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
46925
|
+
"node_modules/.pnpm/tsup@8.0.0_patch_hash=fecszixvz36nsmruxbct32ggt4_@microsoft+api-extractor@7.38.3_@swc+core@1._obsfvncdmdnopsocrl4rw2efcm/node_modules/tsup/dist/chunk-UIX4URMV.js"(exports) {
|
|
46926
46926
|
"use strict";
|
|
46927
46927
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
46928
46928
|
function _interopRequireWildcard(obj) {
|
|
@@ -47856,9 +47856,9 @@ var require_dist3 = __commonJS({
|
|
|
47856
47856
|
}
|
|
47857
47857
|
});
|
|
47858
47858
|
|
|
47859
|
-
// node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
47859
|
+
// node_modules/.pnpm/tsup@8.0.0_patch_hash=fecszixvz36nsmruxbct32ggt4_@microsoft+api-extractor@7.38.3_@swc+core@1._obsfvncdmdnopsocrl4rw2efcm/node_modules/tsup/dist/chunk-7G76EW2R.js
|
|
47860
47860
|
var require_chunk_7G76EW2R = __commonJS({
|
|
47861
|
-
"node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
47861
|
+
"node_modules/.pnpm/tsup@8.0.0_patch_hash=fecszixvz36nsmruxbct32ggt4_@microsoft+api-extractor@7.38.3_@swc+core@1._obsfvncdmdnopsocrl4rw2efcm/node_modules/tsup/dist/chunk-7G76EW2R.js"(exports) {
|
|
47862
47862
|
"use strict";
|
|
47863
47863
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
47864
47864
|
function _interopRequireDefault(obj) {
|
|
@@ -101058,9 +101058,9 @@ var require_chokidar = __commonJS({
|
|
|
101058
101058
|
}
|
|
101059
101059
|
});
|
|
101060
101060
|
|
|
101061
|
-
// node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
101061
|
+
// node_modules/.pnpm/tsup@8.0.0_patch_hash=fecszixvz36nsmruxbct32ggt4_@microsoft+api-extractor@7.38.3_@swc+core@1._obsfvncdmdnopsocrl4rw2efcm/node_modules/tsup/dist/index.js
|
|
101062
101062
|
var require_dist6 = __commonJS({
|
|
101063
|
-
"node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
101063
|
+
"node_modules/.pnpm/tsup@8.0.0_patch_hash=fecszixvz36nsmruxbct32ggt4_@microsoft+api-extractor@7.38.3_@swc+core@1._obsfvncdmdnopsocrl4rw2efcm/node_modules/tsup/dist/index.js"(exports) {
|
|
101064
101064
|
"use strict";
|
|
101065
101065
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
101066
101066
|
function _interopRequireDefault(obj) {
|
|
@@ -102862,6 +102862,7 @@ var require_dist6 = __commonJS({
|
|
|
102862
102862
|
pure: typeof options.pure === "string" ? [options.pure] : options.pure,
|
|
102863
102863
|
metafile: true
|
|
102864
102864
|
});
|
|
102865
|
+
await new Promise((r) => setTimeout(r, 100));
|
|
102865
102866
|
} catch (error) {
|
|
102866
102867
|
logger3.error(format2, "Build failed");
|
|
102867
102868
|
throw error;
|
|
@@ -107878,7 +107879,7 @@ ${chalk.bold.hex(config?.colors?.info ? config.colors.info : "#0ea5e9")(">")} ${
|
|
|
107878
107879
|
return (message) => {
|
|
107879
107880
|
console.info(
|
|
107880
107881
|
`
|
|
107881
|
-
${chalk.bold.hex(config?.colors?.success ? config.colors.success : "#087f5b")(">")} ${chalk.bold.bgHex(config?.colors?.success ? config.colors.success : "#087f5b").white(" \
|
|
107882
|
+
${chalk.bold.hex(config?.colors?.success ? config.colors.success : "#087f5b")(">")} ${chalk.bold.bgHex(config?.colors?.success ? config.colors.success : "#087f5b").white(" \u2713 Success ")} ${chalk.hex(
|
|
107882
107883
|
config?.colors?.success ? config.colors.success : "#087f5b"
|
|
107883
107884
|
)(message)}
|
|
107884
107885
|
`
|
|
@@ -107889,7 +107890,7 @@ ${chalk.bold.hex(config?.colors?.success ? config.colors.success : "#087f5b")(">
|
|
|
107889
107890
|
return (message) => {
|
|
107890
107891
|
console.debug(
|
|
107891
107892
|
`
|
|
107892
|
-
${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(">")} ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").white("
|
|
107893
|
+
${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(">")} ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").white(" \u{1F6E0} Debug ")} ${chalk.hex(
|
|
107893
107894
|
config?.colors?.primary ? config.colors.primary : "#1fb2a6"
|
|
107894
107895
|
)(message)}
|
|
107895
107896
|
`
|
|
@@ -107899,7 +107900,7 @@ ${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(">
|
|
|
107899
107900
|
return (message) => {
|
|
107900
107901
|
console.log(
|
|
107901
107902
|
`
|
|
107902
|
-
${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(">")} ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").white("
|
|
107903
|
+
${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(">")} ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").white(" \u2709 System ")} ${chalk.hex(
|
|
107903
107904
|
config?.colors?.primary ? config.colors.primary : "#1fb2a6"
|
|
107904
107905
|
)(message)}
|
|
107905
107906
|
`
|
|
@@ -107919,9 +107920,12 @@ var getStopwatch = (name) => {
|
|
|
107919
107920
|
const end = process.hrtime(start);
|
|
107920
107921
|
console.info(
|
|
107921
107922
|
chalk.dim(
|
|
107922
|
-
|
|
107923
|
+
`
|
|
107924
|
+
\u23F1\uFE0F The${name ? ` ${name}` : ""} process took ${Math.round(
|
|
107923
107925
|
end[0] * 1e3 + end[1] / 1e6
|
|
107924
|
-
)}ms to complete
|
|
107926
|
+
)}ms to complete
|
|
107927
|
+
|
|
107928
|
+
`
|
|
107925
107929
|
)
|
|
107926
107930
|
);
|
|
107927
107931
|
};
|
|
@@ -116715,6 +116719,7 @@ var build = async (options, config) => {
|
|
|
116715
116719
|
console.log("\u2699\uFE0F Tsup build config: \n", options, "\n");
|
|
116716
116720
|
}
|
|
116717
116721
|
await (0, import_tsup.build)(options);
|
|
116722
|
+
await new Promise((r) => setTimeout(r, 100));
|
|
116718
116723
|
}
|
|
116719
116724
|
};
|
|
116720
116725
|
var applyDefaultOptions = (options) => {
|
|
@@ -37193,7 +37193,7 @@ ${chalk.bold.hex(config?.colors?.info ? config.colors.info : "#0ea5e9")(">")} ${
|
|
|
37193
37193
|
return (message) => {
|
|
37194
37194
|
console.info(
|
|
37195
37195
|
`
|
|
37196
|
-
${chalk.bold.hex(config?.colors?.success ? config.colors.success : "#087f5b")(">")} ${chalk.bold.bgHex(config?.colors?.success ? config.colors.success : "#087f5b").white(" \
|
|
37196
|
+
${chalk.bold.hex(config?.colors?.success ? config.colors.success : "#087f5b")(">")} ${chalk.bold.bgHex(config?.colors?.success ? config.colors.success : "#087f5b").white(" \u2713 Success ")} ${chalk.hex(
|
|
37197
37197
|
config?.colors?.success ? config.colors.success : "#087f5b"
|
|
37198
37198
|
)(message)}
|
|
37199
37199
|
`
|
|
@@ -37204,7 +37204,7 @@ ${chalk.bold.hex(config?.colors?.success ? config.colors.success : "#087f5b")(">
|
|
|
37204
37204
|
return (message) => {
|
|
37205
37205
|
console.debug(
|
|
37206
37206
|
`
|
|
37207
|
-
${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(">")} ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").white("
|
|
37207
|
+
${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(">")} ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").white(" \u{1F6E0} Debug ")} ${chalk.hex(
|
|
37208
37208
|
config?.colors?.primary ? config.colors.primary : "#1fb2a6"
|
|
37209
37209
|
)(message)}
|
|
37210
37210
|
`
|
|
@@ -37214,7 +37214,7 @@ ${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(">
|
|
|
37214
37214
|
return (message) => {
|
|
37215
37215
|
console.log(
|
|
37216
37216
|
`
|
|
37217
|
-
${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(">")} ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").white("
|
|
37217
|
+
${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(">")} ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").white(" \u2709 System ")} ${chalk.hex(
|
|
37218
37218
|
config?.colors?.primary ? config.colors.primary : "#1fb2a6"
|
|
37219
37219
|
)(message)}
|
|
37220
37220
|
`
|
|
@@ -37234,9 +37234,12 @@ var getStopwatch = (name) => {
|
|
|
37234
37234
|
const end = process.hrtime(start);
|
|
37235
37235
|
console.info(
|
|
37236
37236
|
chalk.dim(
|
|
37237
|
-
|
|
37237
|
+
`
|
|
37238
|
+
\u23F1\uFE0F The${name ? ` ${name}` : ""} process took ${Math.round(
|
|
37238
37239
|
end[0] * 1e3 + end[1] / 1e6
|
|
37239
|
-
)}ms to complete
|
|
37240
|
+
)}ms to complete
|
|
37241
|
+
|
|
37242
|
+
`
|
|
37240
37243
|
)
|
|
37241
37244
|
);
|
|
37242
37245
|
};
|