@storm-software/workspace-tools 1.43.4 → 1.43.5
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 +8 -0
- package/index.js +25 -14
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/base/index.js +14 -0
- package/src/executors/design-tokens/executor.js +14 -0
- package/src/executors/tsup/executor.js +25 -14
- package/src/executors/tsup-browser/executor.js +25 -14
- package/src/executors/tsup-neutral/executor.js +25 -14
- package/src/executors/tsup-node/executor.js +25 -14
- package/src/generators/browser-library/generator.js +14 -0
- package/src/generators/config-schema/generator.js +14 -0
- package/src/generators/neutral-library/generator.js +14 -0
- package/src/generators/node-library/generator.js +14 -0
- package/src/generators/preset/generator.js +14 -0
package/package.json
CHANGED
package/src/base/index.js
CHANGED
|
@@ -47386,12 +47386,14 @@ var getLogFn = (config = {}, logLevel = LogLevel.INFO) => {
|
|
|
47386
47386
|
console.error(
|
|
47387
47387
|
`
|
|
47388
47388
|
|
|
47389
|
+
|
|
47389
47390
|
${chalk.bold.hex(config?.colors?.fatal ? config.colors.fatal : "#1fb2a6")(
|
|
47390
47391
|
">"
|
|
47391
47392
|
)} ${chalk.bold.bgHex(config?.colors?.fatal ? config.colors.fatal : "#1fb2a6").white(" \u{1F480} Fatal ")} ${chalk.reset.hex(
|
|
47392
47393
|
config?.colors?.fatal ? config.colors.fatal : "#1fb2a6"
|
|
47393
47394
|
)(message)}
|
|
47394
47395
|
|
|
47396
|
+
|
|
47395
47397
|
`
|
|
47396
47398
|
);
|
|
47397
47399
|
};
|
|
@@ -47401,12 +47403,14 @@ var getLogFn = (config = {}, logLevel = LogLevel.INFO) => {
|
|
|
47401
47403
|
console.error(
|
|
47402
47404
|
`
|
|
47403
47405
|
|
|
47406
|
+
|
|
47404
47407
|
${chalk.bold.hex(config?.colors?.error ? config.colors.error : "#7d1a1a")(
|
|
47405
47408
|
">"
|
|
47406
47409
|
)} ${chalk.bold.bgHex(config?.colors?.error ? config.colors.error : "#7d1a1a").white(" \u{1F6D1} Error ")} ${chalk.reset.hex(
|
|
47407
47410
|
config?.colors?.error ? config.colors.error : "#7d1a1a"
|
|
47408
47411
|
)(message)}
|
|
47409
47412
|
|
|
47413
|
+
|
|
47410
47414
|
`
|
|
47411
47415
|
);
|
|
47412
47416
|
};
|
|
@@ -47416,12 +47420,14 @@ var getLogFn = (config = {}, logLevel = LogLevel.INFO) => {
|
|
|
47416
47420
|
console.warn(
|
|
47417
47421
|
`
|
|
47418
47422
|
|
|
47423
|
+
|
|
47419
47424
|
${chalk.bold.hex(config?.colors?.warning ? config.colors.warning : "#fcc419")(
|
|
47420
47425
|
">"
|
|
47421
47426
|
)} ${chalk.bold.bgHex(config?.colors?.warning ? config.colors.warning : "#fcc419").white(" \u26A0\uFE0F Warn ")} ${chalk.reset.hex(
|
|
47422
47427
|
config?.colors?.warning ? config.colors.warning : "#fcc419"
|
|
47423
47428
|
)(message)}
|
|
47424
47429
|
|
|
47430
|
+
|
|
47425
47431
|
`
|
|
47426
47432
|
);
|
|
47427
47433
|
};
|
|
@@ -47431,12 +47437,14 @@ var getLogFn = (config = {}, logLevel = LogLevel.INFO) => {
|
|
|
47431
47437
|
console.info(
|
|
47432
47438
|
`
|
|
47433
47439
|
|
|
47440
|
+
|
|
47434
47441
|
${chalk.bold.hex(config?.colors?.info ? config.colors.info : "#0ea5e9")(
|
|
47435
47442
|
">"
|
|
47436
47443
|
)} ${chalk.bold.bgHex(config?.colors?.info ? config.colors.info : "#0ea5e9").white(" \u{1F4EC} Info ")} ${chalk.reset.hex(
|
|
47437
47444
|
config?.colors?.info ? config.colors.info : "#0ea5e9"
|
|
47438
47445
|
)(message)}
|
|
47439
47446
|
|
|
47447
|
+
|
|
47440
47448
|
`
|
|
47441
47449
|
);
|
|
47442
47450
|
};
|
|
@@ -47446,12 +47454,14 @@ var getLogFn = (config = {}, logLevel = LogLevel.INFO) => {
|
|
|
47446
47454
|
console.info(
|
|
47447
47455
|
`
|
|
47448
47456
|
|
|
47457
|
+
|
|
47449
47458
|
${chalk.bold.hex(config?.colors?.success ? config.colors.success : "#087f5b")(
|
|
47450
47459
|
">"
|
|
47451
47460
|
)} ${chalk.bold.bgHex(config?.colors?.success ? config.colors.success : "#087f5b").white(" \u{1F389} Success ")} ${chalk.reset.hex(
|
|
47452
47461
|
config?.colors?.success ? config.colors.success : "#087f5b"
|
|
47453
47462
|
)(message)}
|
|
47454
47463
|
|
|
47464
|
+
|
|
47455
47465
|
`
|
|
47456
47466
|
);
|
|
47457
47467
|
};
|
|
@@ -47461,12 +47471,14 @@ var getLogFn = (config = {}, logLevel = LogLevel.INFO) => {
|
|
|
47461
47471
|
console.debug(
|
|
47462
47472
|
`
|
|
47463
47473
|
|
|
47474
|
+
|
|
47464
47475
|
${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(
|
|
47465
47476
|
">"
|
|
47466
47477
|
)} ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").white(" \u{1F9EA} Debug ")} ${chalk.reset.hex(
|
|
47467
47478
|
config?.colors?.primary ? config.colors.primary : "#1fb2a6"
|
|
47468
47479
|
)(message)}
|
|
47469
47480
|
|
|
47481
|
+
|
|
47470
47482
|
`
|
|
47471
47483
|
);
|
|
47472
47484
|
};
|
|
@@ -47475,12 +47487,14 @@ var getLogFn = (config = {}, logLevel = LogLevel.INFO) => {
|
|
|
47475
47487
|
console.log(
|
|
47476
47488
|
`
|
|
47477
47489
|
|
|
47490
|
+
|
|
47478
47491
|
${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(
|
|
47479
47492
|
">"
|
|
47480
47493
|
)} ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").white(" \u{1F4E2} System ")} ${chalk.bold.hex(
|
|
47481
47494
|
config?.colors?.primary ? config.colors.primary : "#1fb2a6"
|
|
47482
47495
|
)(message)}
|
|
47483
47496
|
|
|
47497
|
+
|
|
47484
47498
|
`
|
|
47485
47499
|
);
|
|
47486
47500
|
};
|
|
@@ -65302,12 +65302,14 @@ var getLogFn = (config = {}, logLevel = LogLevel.INFO) => {
|
|
|
65302
65302
|
console.error(
|
|
65303
65303
|
`
|
|
65304
65304
|
|
|
65305
|
+
|
|
65305
65306
|
${chalk.bold.hex(config?.colors?.fatal ? config.colors.fatal : "#1fb2a6")(
|
|
65306
65307
|
">"
|
|
65307
65308
|
)} ${chalk.bold.bgHex(config?.colors?.fatal ? config.colors.fatal : "#1fb2a6").white(" \u{1F480} Fatal ")} ${chalk.reset.hex(
|
|
65308
65309
|
config?.colors?.fatal ? config.colors.fatal : "#1fb2a6"
|
|
65309
65310
|
)(message)}
|
|
65310
65311
|
|
|
65312
|
+
|
|
65311
65313
|
`
|
|
65312
65314
|
);
|
|
65313
65315
|
};
|
|
@@ -65317,12 +65319,14 @@ var getLogFn = (config = {}, logLevel = LogLevel.INFO) => {
|
|
|
65317
65319
|
console.error(
|
|
65318
65320
|
`
|
|
65319
65321
|
|
|
65322
|
+
|
|
65320
65323
|
${chalk.bold.hex(config?.colors?.error ? config.colors.error : "#7d1a1a")(
|
|
65321
65324
|
">"
|
|
65322
65325
|
)} ${chalk.bold.bgHex(config?.colors?.error ? config.colors.error : "#7d1a1a").white(" \u{1F6D1} Error ")} ${chalk.reset.hex(
|
|
65323
65326
|
config?.colors?.error ? config.colors.error : "#7d1a1a"
|
|
65324
65327
|
)(message)}
|
|
65325
65328
|
|
|
65329
|
+
|
|
65326
65330
|
`
|
|
65327
65331
|
);
|
|
65328
65332
|
};
|
|
@@ -65332,12 +65336,14 @@ var getLogFn = (config = {}, logLevel = LogLevel.INFO) => {
|
|
|
65332
65336
|
console.warn(
|
|
65333
65337
|
`
|
|
65334
65338
|
|
|
65339
|
+
|
|
65335
65340
|
${chalk.bold.hex(config?.colors?.warning ? config.colors.warning : "#fcc419")(
|
|
65336
65341
|
">"
|
|
65337
65342
|
)} ${chalk.bold.bgHex(config?.colors?.warning ? config.colors.warning : "#fcc419").white(" \u26A0\uFE0F Warn ")} ${chalk.reset.hex(
|
|
65338
65343
|
config?.colors?.warning ? config.colors.warning : "#fcc419"
|
|
65339
65344
|
)(message)}
|
|
65340
65345
|
|
|
65346
|
+
|
|
65341
65347
|
`
|
|
65342
65348
|
);
|
|
65343
65349
|
};
|
|
@@ -65347,12 +65353,14 @@ var getLogFn = (config = {}, logLevel = LogLevel.INFO) => {
|
|
|
65347
65353
|
console.info(
|
|
65348
65354
|
`
|
|
65349
65355
|
|
|
65356
|
+
|
|
65350
65357
|
${chalk.bold.hex(config?.colors?.info ? config.colors.info : "#0ea5e9")(
|
|
65351
65358
|
">"
|
|
65352
65359
|
)} ${chalk.bold.bgHex(config?.colors?.info ? config.colors.info : "#0ea5e9").white(" \u{1F4EC} Info ")} ${chalk.reset.hex(
|
|
65353
65360
|
config?.colors?.info ? config.colors.info : "#0ea5e9"
|
|
65354
65361
|
)(message)}
|
|
65355
65362
|
|
|
65363
|
+
|
|
65356
65364
|
`
|
|
65357
65365
|
);
|
|
65358
65366
|
};
|
|
@@ -65362,12 +65370,14 @@ var getLogFn = (config = {}, logLevel = LogLevel.INFO) => {
|
|
|
65362
65370
|
console.info(
|
|
65363
65371
|
`
|
|
65364
65372
|
|
|
65373
|
+
|
|
65365
65374
|
${chalk.bold.hex(config?.colors?.success ? config.colors.success : "#087f5b")(
|
|
65366
65375
|
">"
|
|
65367
65376
|
)} ${chalk.bold.bgHex(config?.colors?.success ? config.colors.success : "#087f5b").white(" \u{1F389} Success ")} ${chalk.reset.hex(
|
|
65368
65377
|
config?.colors?.success ? config.colors.success : "#087f5b"
|
|
65369
65378
|
)(message)}
|
|
65370
65379
|
|
|
65380
|
+
|
|
65371
65381
|
`
|
|
65372
65382
|
);
|
|
65373
65383
|
};
|
|
@@ -65377,12 +65387,14 @@ var getLogFn = (config = {}, logLevel = LogLevel.INFO) => {
|
|
|
65377
65387
|
console.debug(
|
|
65378
65388
|
`
|
|
65379
65389
|
|
|
65390
|
+
|
|
65380
65391
|
${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(
|
|
65381
65392
|
">"
|
|
65382
65393
|
)} ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").white(" \u{1F9EA} Debug ")} ${chalk.reset.hex(
|
|
65383
65394
|
config?.colors?.primary ? config.colors.primary : "#1fb2a6"
|
|
65384
65395
|
)(message)}
|
|
65385
65396
|
|
|
65397
|
+
|
|
65386
65398
|
`
|
|
65387
65399
|
);
|
|
65388
65400
|
};
|
|
@@ -65391,12 +65403,14 @@ var getLogFn = (config = {}, logLevel = LogLevel.INFO) => {
|
|
|
65391
65403
|
console.log(
|
|
65392
65404
|
`
|
|
65393
65405
|
|
|
65406
|
+
|
|
65394
65407
|
${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(
|
|
65395
65408
|
">"
|
|
65396
65409
|
)} ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").white(" \u{1F4E2} System ")} ${chalk.bold.hex(
|
|
65397
65410
|
config?.colors?.primary ? config.colors.primary : "#1fb2a6"
|
|
65398
65411
|
)(message)}
|
|
65399
65412
|
|
|
65413
|
+
|
|
65400
65414
|
`
|
|
65401
65415
|
);
|
|
65402
65416
|
};
|
|
@@ -44822,9 +44822,9 @@ var require_brace_expansion2 = __commonJS({
|
|
|
44822
44822
|
}
|
|
44823
44823
|
});
|
|
44824
44824
|
|
|
44825
|
-
// node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
44825
|
+
// node_modules/.pnpm/tsup@8.0.0_patch_hash=xmhwxzi2nqhltf2r7syhjyoc7i_@microsoft+api-extractor@7.38.3_@swc+core@1._6zprvhhd4zzf6xxclnutwtxcvy/node_modules/tsup/dist/chunk-EPAEWGCP.js
|
|
44826
44826
|
var require_chunk_EPAEWGCP = __commonJS({
|
|
44827
|
-
"node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
44827
|
+
"node_modules/.pnpm/tsup@8.0.0_patch_hash=xmhwxzi2nqhltf2r7syhjyoc7i_@microsoft+api-extractor@7.38.3_@swc+core@1._6zprvhhd4zzf6xxclnutwtxcvy/node_modules/tsup/dist/chunk-EPAEWGCP.js"(exports) {
|
|
44828
44828
|
"use strict";
|
|
44829
44829
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
44830
44830
|
var version = "8.0.0";
|
|
@@ -46471,9 +46471,9 @@ var require_resolve_from2 = __commonJS({
|
|
|
46471
46471
|
}
|
|
46472
46472
|
});
|
|
46473
46473
|
|
|
46474
|
-
// node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
46474
|
+
// node_modules/.pnpm/tsup@8.0.0_patch_hash=xmhwxzi2nqhltf2r7syhjyoc7i_@microsoft+api-extractor@7.38.3_@swc+core@1._6zprvhhd4zzf6xxclnutwtxcvy/node_modules/tsup/dist/chunk-GQ77QZBO.js
|
|
46475
46475
|
var require_chunk_GQ77QZBO = __commonJS({
|
|
46476
|
-
"node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
46476
|
+
"node_modules/.pnpm/tsup@8.0.0_patch_hash=xmhwxzi2nqhltf2r7syhjyoc7i_@microsoft+api-extractor@7.38.3_@swc+core@1._6zprvhhd4zzf6xxclnutwtxcvy/node_modules/tsup/dist/chunk-GQ77QZBO.js"(exports) {
|
|
46477
46477
|
"use strict";
|
|
46478
46478
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
46479
46479
|
function _interopRequireDefault(obj) {
|
|
@@ -46751,9 +46751,9 @@ var require_chunk_GQ77QZBO = __commonJS({
|
|
|
46751
46751
|
}
|
|
46752
46752
|
});
|
|
46753
46753
|
|
|
46754
|
-
// node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
46754
|
+
// node_modules/.pnpm/tsup@8.0.0_patch_hash=xmhwxzi2nqhltf2r7syhjyoc7i_@microsoft+api-extractor@7.38.3_@swc+core@1._6zprvhhd4zzf6xxclnutwtxcvy/node_modules/tsup/dist/chunk-UIX4URMV.js
|
|
46755
46755
|
var require_chunk_UIX4URMV = __commonJS({
|
|
46756
|
-
"node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
46756
|
+
"node_modules/.pnpm/tsup@8.0.0_patch_hash=xmhwxzi2nqhltf2r7syhjyoc7i_@microsoft+api-extractor@7.38.3_@swc+core@1._6zprvhhd4zzf6xxclnutwtxcvy/node_modules/tsup/dist/chunk-UIX4URMV.js"(exports) {
|
|
46757
46757
|
"use strict";
|
|
46758
46758
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
46759
46759
|
function _interopRequireWildcard(obj) {
|
|
@@ -47687,9 +47687,9 @@ var require_dist3 = __commonJS({
|
|
|
47687
47687
|
}
|
|
47688
47688
|
});
|
|
47689
47689
|
|
|
47690
|
-
// node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
47690
|
+
// node_modules/.pnpm/tsup@8.0.0_patch_hash=xmhwxzi2nqhltf2r7syhjyoc7i_@microsoft+api-extractor@7.38.3_@swc+core@1._6zprvhhd4zzf6xxclnutwtxcvy/node_modules/tsup/dist/chunk-7G76EW2R.js
|
|
47691
47691
|
var require_chunk_7G76EW2R = __commonJS({
|
|
47692
|
-
"node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
47692
|
+
"node_modules/.pnpm/tsup@8.0.0_patch_hash=xmhwxzi2nqhltf2r7syhjyoc7i_@microsoft+api-extractor@7.38.3_@swc+core@1._6zprvhhd4zzf6xxclnutwtxcvy/node_modules/tsup/dist/chunk-7G76EW2R.js"(exports) {
|
|
47693
47693
|
"use strict";
|
|
47694
47694
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
47695
47695
|
function _interopRequireDefault(obj) {
|
|
@@ -101426,9 +101426,9 @@ var require_chokidar = __commonJS({
|
|
|
101426
101426
|
}
|
|
101427
101427
|
});
|
|
101428
101428
|
|
|
101429
|
-
// node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
101429
|
+
// node_modules/.pnpm/tsup@8.0.0_patch_hash=xmhwxzi2nqhltf2r7syhjyoc7i_@microsoft+api-extractor@7.38.3_@swc+core@1._6zprvhhd4zzf6xxclnutwtxcvy/node_modules/tsup/dist/index.js
|
|
101430
101430
|
var require_dist6 = __commonJS({
|
|
101431
|
-
"node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
101431
|
+
"node_modules/.pnpm/tsup@8.0.0_patch_hash=xmhwxzi2nqhltf2r7syhjyoc7i_@microsoft+api-extractor@7.38.3_@swc+core@1._6zprvhhd4zzf6xxclnutwtxcvy/node_modules/tsup/dist/index.js"(exports) {
|
|
101432
101432
|
"use strict";
|
|
101433
101433
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
101434
101434
|
function _interopRequireDefault(obj) {
|
|
@@ -103762,10 +103762,7 @@ var require_dist6 = __commonJS({
|
|
|
103762
103762
|
const program = _typescript2.default.createProgram({
|
|
103763
103763
|
rootNames: compilerOptions.fileNames,
|
|
103764
103764
|
options: compilerOptions.options,
|
|
103765
|
-
host
|
|
103766
|
-
...host,
|
|
103767
|
-
jsDocParsingMode: _typescript2.default.JSDocParsingMode?.ParseAll !== void 0 ? _typescript2.default.JSDocParsingMode.ParseAll : 0
|
|
103768
|
-
}
|
|
103765
|
+
host
|
|
103769
103766
|
});
|
|
103770
103767
|
const fileMapping = emitDtsFiles(program, host, options);
|
|
103771
103768
|
if (!fileMapping || fileMapping.size === 0) {
|
|
@@ -130245,12 +130242,14 @@ var getLogFn = (config = {}, logLevel = LogLevel.INFO) => {
|
|
|
130245
130242
|
console.error(
|
|
130246
130243
|
`
|
|
130247
130244
|
|
|
130245
|
+
|
|
130248
130246
|
${chalk.bold.hex(config?.colors?.fatal ? config.colors.fatal : "#1fb2a6")(
|
|
130249
130247
|
">"
|
|
130250
130248
|
)} ${chalk.bold.bgHex(config?.colors?.fatal ? config.colors.fatal : "#1fb2a6").white(" \u{1F480} Fatal ")} ${chalk.reset.hex(
|
|
130251
130249
|
config?.colors?.fatal ? config.colors.fatal : "#1fb2a6"
|
|
130252
130250
|
)(message)}
|
|
130253
130251
|
|
|
130252
|
+
|
|
130254
130253
|
`
|
|
130255
130254
|
);
|
|
130256
130255
|
};
|
|
@@ -130260,12 +130259,14 @@ var getLogFn = (config = {}, logLevel = LogLevel.INFO) => {
|
|
|
130260
130259
|
console.error(
|
|
130261
130260
|
`
|
|
130262
130261
|
|
|
130262
|
+
|
|
130263
130263
|
${chalk.bold.hex(config?.colors?.error ? config.colors.error : "#7d1a1a")(
|
|
130264
130264
|
">"
|
|
130265
130265
|
)} ${chalk.bold.bgHex(config?.colors?.error ? config.colors.error : "#7d1a1a").white(" \u{1F6D1} Error ")} ${chalk.reset.hex(
|
|
130266
130266
|
config?.colors?.error ? config.colors.error : "#7d1a1a"
|
|
130267
130267
|
)(message)}
|
|
130268
130268
|
|
|
130269
|
+
|
|
130269
130270
|
`
|
|
130270
130271
|
);
|
|
130271
130272
|
};
|
|
@@ -130275,12 +130276,14 @@ var getLogFn = (config = {}, logLevel = LogLevel.INFO) => {
|
|
|
130275
130276
|
console.warn(
|
|
130276
130277
|
`
|
|
130277
130278
|
|
|
130279
|
+
|
|
130278
130280
|
${chalk.bold.hex(config?.colors?.warning ? config.colors.warning : "#fcc419")(
|
|
130279
130281
|
">"
|
|
130280
130282
|
)} ${chalk.bold.bgHex(config?.colors?.warning ? config.colors.warning : "#fcc419").white(" \u26A0\uFE0F Warn ")} ${chalk.reset.hex(
|
|
130281
130283
|
config?.colors?.warning ? config.colors.warning : "#fcc419"
|
|
130282
130284
|
)(message)}
|
|
130283
130285
|
|
|
130286
|
+
|
|
130284
130287
|
`
|
|
130285
130288
|
);
|
|
130286
130289
|
};
|
|
@@ -130290,12 +130293,14 @@ var getLogFn = (config = {}, logLevel = LogLevel.INFO) => {
|
|
|
130290
130293
|
console.info(
|
|
130291
130294
|
`
|
|
130292
130295
|
|
|
130296
|
+
|
|
130293
130297
|
${chalk.bold.hex(config?.colors?.info ? config.colors.info : "#0ea5e9")(
|
|
130294
130298
|
">"
|
|
130295
130299
|
)} ${chalk.bold.bgHex(config?.colors?.info ? config.colors.info : "#0ea5e9").white(" \u{1F4EC} Info ")} ${chalk.reset.hex(
|
|
130296
130300
|
config?.colors?.info ? config.colors.info : "#0ea5e9"
|
|
130297
130301
|
)(message)}
|
|
130298
130302
|
|
|
130303
|
+
|
|
130299
130304
|
`
|
|
130300
130305
|
);
|
|
130301
130306
|
};
|
|
@@ -130305,12 +130310,14 @@ var getLogFn = (config = {}, logLevel = LogLevel.INFO) => {
|
|
|
130305
130310
|
console.info(
|
|
130306
130311
|
`
|
|
130307
130312
|
|
|
130313
|
+
|
|
130308
130314
|
${chalk.bold.hex(config?.colors?.success ? config.colors.success : "#087f5b")(
|
|
130309
130315
|
">"
|
|
130310
130316
|
)} ${chalk.bold.bgHex(config?.colors?.success ? config.colors.success : "#087f5b").white(" \u{1F389} Success ")} ${chalk.reset.hex(
|
|
130311
130317
|
config?.colors?.success ? config.colors.success : "#087f5b"
|
|
130312
130318
|
)(message)}
|
|
130313
130319
|
|
|
130320
|
+
|
|
130314
130321
|
`
|
|
130315
130322
|
);
|
|
130316
130323
|
};
|
|
@@ -130320,12 +130327,14 @@ var getLogFn = (config = {}, logLevel = LogLevel.INFO) => {
|
|
|
130320
130327
|
console.debug(
|
|
130321
130328
|
`
|
|
130322
130329
|
|
|
130330
|
+
|
|
130323
130331
|
${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(
|
|
130324
130332
|
">"
|
|
130325
130333
|
)} ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").white(" \u{1F9EA} Debug ")} ${chalk.reset.hex(
|
|
130326
130334
|
config?.colors?.primary ? config.colors.primary : "#1fb2a6"
|
|
130327
130335
|
)(message)}
|
|
130328
130336
|
|
|
130337
|
+
|
|
130329
130338
|
`
|
|
130330
130339
|
);
|
|
130331
130340
|
};
|
|
@@ -130334,12 +130343,14 @@ var getLogFn = (config = {}, logLevel = LogLevel.INFO) => {
|
|
|
130334
130343
|
console.log(
|
|
130335
130344
|
`
|
|
130336
130345
|
|
|
130346
|
+
|
|
130337
130347
|
${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(
|
|
130338
130348
|
">"
|
|
130339
130349
|
)} ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").white(" \u{1F4E2} System ")} ${chalk.bold.hex(
|
|
130340
130350
|
config?.colors?.primary ? config.colors.primary : "#1fb2a6"
|
|
130341
130351
|
)(message)}
|
|
130342
130352
|
|
|
130353
|
+
|
|
130343
130354
|
`
|
|
130344
130355
|
);
|
|
130345
130356
|
};
|
|
@@ -44822,9 +44822,9 @@ var require_brace_expansion2 = __commonJS({
|
|
|
44822
44822
|
}
|
|
44823
44823
|
});
|
|
44824
44824
|
|
|
44825
|
-
// node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
44825
|
+
// node_modules/.pnpm/tsup@8.0.0_patch_hash=xmhwxzi2nqhltf2r7syhjyoc7i_@microsoft+api-extractor@7.38.3_@swc+core@1._6zprvhhd4zzf6xxclnutwtxcvy/node_modules/tsup/dist/chunk-EPAEWGCP.js
|
|
44826
44826
|
var require_chunk_EPAEWGCP = __commonJS({
|
|
44827
|
-
"node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
44827
|
+
"node_modules/.pnpm/tsup@8.0.0_patch_hash=xmhwxzi2nqhltf2r7syhjyoc7i_@microsoft+api-extractor@7.38.3_@swc+core@1._6zprvhhd4zzf6xxclnutwtxcvy/node_modules/tsup/dist/chunk-EPAEWGCP.js"(exports) {
|
|
44828
44828
|
"use strict";
|
|
44829
44829
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
44830
44830
|
var version = "8.0.0";
|
|
@@ -46471,9 +46471,9 @@ var require_resolve_from2 = __commonJS({
|
|
|
46471
46471
|
}
|
|
46472
46472
|
});
|
|
46473
46473
|
|
|
46474
|
-
// node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
46474
|
+
// node_modules/.pnpm/tsup@8.0.0_patch_hash=xmhwxzi2nqhltf2r7syhjyoc7i_@microsoft+api-extractor@7.38.3_@swc+core@1._6zprvhhd4zzf6xxclnutwtxcvy/node_modules/tsup/dist/chunk-GQ77QZBO.js
|
|
46475
46475
|
var require_chunk_GQ77QZBO = __commonJS({
|
|
46476
|
-
"node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
46476
|
+
"node_modules/.pnpm/tsup@8.0.0_patch_hash=xmhwxzi2nqhltf2r7syhjyoc7i_@microsoft+api-extractor@7.38.3_@swc+core@1._6zprvhhd4zzf6xxclnutwtxcvy/node_modules/tsup/dist/chunk-GQ77QZBO.js"(exports) {
|
|
46477
46477
|
"use strict";
|
|
46478
46478
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
46479
46479
|
function _interopRequireDefault(obj) {
|
|
@@ -46751,9 +46751,9 @@ var require_chunk_GQ77QZBO = __commonJS({
|
|
|
46751
46751
|
}
|
|
46752
46752
|
});
|
|
46753
46753
|
|
|
46754
|
-
// node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
46754
|
+
// node_modules/.pnpm/tsup@8.0.0_patch_hash=xmhwxzi2nqhltf2r7syhjyoc7i_@microsoft+api-extractor@7.38.3_@swc+core@1._6zprvhhd4zzf6xxclnutwtxcvy/node_modules/tsup/dist/chunk-UIX4URMV.js
|
|
46755
46755
|
var require_chunk_UIX4URMV = __commonJS({
|
|
46756
|
-
"node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
46756
|
+
"node_modules/.pnpm/tsup@8.0.0_patch_hash=xmhwxzi2nqhltf2r7syhjyoc7i_@microsoft+api-extractor@7.38.3_@swc+core@1._6zprvhhd4zzf6xxclnutwtxcvy/node_modules/tsup/dist/chunk-UIX4URMV.js"(exports) {
|
|
46757
46757
|
"use strict";
|
|
46758
46758
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
46759
46759
|
function _interopRequireWildcard(obj) {
|
|
@@ -47687,9 +47687,9 @@ var require_dist3 = __commonJS({
|
|
|
47687
47687
|
}
|
|
47688
47688
|
});
|
|
47689
47689
|
|
|
47690
|
-
// node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
47690
|
+
// node_modules/.pnpm/tsup@8.0.0_patch_hash=xmhwxzi2nqhltf2r7syhjyoc7i_@microsoft+api-extractor@7.38.3_@swc+core@1._6zprvhhd4zzf6xxclnutwtxcvy/node_modules/tsup/dist/chunk-7G76EW2R.js
|
|
47691
47691
|
var require_chunk_7G76EW2R = __commonJS({
|
|
47692
|
-
"node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
47692
|
+
"node_modules/.pnpm/tsup@8.0.0_patch_hash=xmhwxzi2nqhltf2r7syhjyoc7i_@microsoft+api-extractor@7.38.3_@swc+core@1._6zprvhhd4zzf6xxclnutwtxcvy/node_modules/tsup/dist/chunk-7G76EW2R.js"(exports) {
|
|
47693
47693
|
"use strict";
|
|
47694
47694
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
47695
47695
|
function _interopRequireDefault(obj) {
|
|
@@ -101426,9 +101426,9 @@ var require_chokidar = __commonJS({
|
|
|
101426
101426
|
}
|
|
101427
101427
|
});
|
|
101428
101428
|
|
|
101429
|
-
// node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
101429
|
+
// node_modules/.pnpm/tsup@8.0.0_patch_hash=xmhwxzi2nqhltf2r7syhjyoc7i_@microsoft+api-extractor@7.38.3_@swc+core@1._6zprvhhd4zzf6xxclnutwtxcvy/node_modules/tsup/dist/index.js
|
|
101430
101430
|
var require_dist6 = __commonJS({
|
|
101431
|
-
"node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
101431
|
+
"node_modules/.pnpm/tsup@8.0.0_patch_hash=xmhwxzi2nqhltf2r7syhjyoc7i_@microsoft+api-extractor@7.38.3_@swc+core@1._6zprvhhd4zzf6xxclnutwtxcvy/node_modules/tsup/dist/index.js"(exports) {
|
|
101432
101432
|
"use strict";
|
|
101433
101433
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
101434
101434
|
function _interopRequireDefault(obj) {
|
|
@@ -103762,10 +103762,7 @@ var require_dist6 = __commonJS({
|
|
|
103762
103762
|
const program = _typescript2.default.createProgram({
|
|
103763
103763
|
rootNames: compilerOptions.fileNames,
|
|
103764
103764
|
options: compilerOptions.options,
|
|
103765
|
-
host
|
|
103766
|
-
...host,
|
|
103767
|
-
jsDocParsingMode: _typescript2.default.JSDocParsingMode?.ParseAll !== void 0 ? _typescript2.default.JSDocParsingMode.ParseAll : 0
|
|
103768
|
-
}
|
|
103765
|
+
host
|
|
103769
103766
|
});
|
|
103770
103767
|
const fileMapping = emitDtsFiles(program, host, options);
|
|
103771
103768
|
if (!fileMapping || fileMapping.size === 0) {
|
|
@@ -130236,12 +130233,14 @@ var getLogFn = (config = {}, logLevel = LogLevel.INFO) => {
|
|
|
130236
130233
|
console.error(
|
|
130237
130234
|
`
|
|
130238
130235
|
|
|
130236
|
+
|
|
130239
130237
|
${chalk.bold.hex(config?.colors?.fatal ? config.colors.fatal : "#1fb2a6")(
|
|
130240
130238
|
">"
|
|
130241
130239
|
)} ${chalk.bold.bgHex(config?.colors?.fatal ? config.colors.fatal : "#1fb2a6").white(" \u{1F480} Fatal ")} ${chalk.reset.hex(
|
|
130242
130240
|
config?.colors?.fatal ? config.colors.fatal : "#1fb2a6"
|
|
130243
130241
|
)(message)}
|
|
130244
130242
|
|
|
130243
|
+
|
|
130245
130244
|
`
|
|
130246
130245
|
);
|
|
130247
130246
|
};
|
|
@@ -130251,12 +130250,14 @@ var getLogFn = (config = {}, logLevel = LogLevel.INFO) => {
|
|
|
130251
130250
|
console.error(
|
|
130252
130251
|
`
|
|
130253
130252
|
|
|
130253
|
+
|
|
130254
130254
|
${chalk.bold.hex(config?.colors?.error ? config.colors.error : "#7d1a1a")(
|
|
130255
130255
|
">"
|
|
130256
130256
|
)} ${chalk.bold.bgHex(config?.colors?.error ? config.colors.error : "#7d1a1a").white(" \u{1F6D1} Error ")} ${chalk.reset.hex(
|
|
130257
130257
|
config?.colors?.error ? config.colors.error : "#7d1a1a"
|
|
130258
130258
|
)(message)}
|
|
130259
130259
|
|
|
130260
|
+
|
|
130260
130261
|
`
|
|
130261
130262
|
);
|
|
130262
130263
|
};
|
|
@@ -130266,12 +130267,14 @@ var getLogFn = (config = {}, logLevel = LogLevel.INFO) => {
|
|
|
130266
130267
|
console.warn(
|
|
130267
130268
|
`
|
|
130268
130269
|
|
|
130270
|
+
|
|
130269
130271
|
${chalk.bold.hex(config?.colors?.warning ? config.colors.warning : "#fcc419")(
|
|
130270
130272
|
">"
|
|
130271
130273
|
)} ${chalk.bold.bgHex(config?.colors?.warning ? config.colors.warning : "#fcc419").white(" \u26A0\uFE0F Warn ")} ${chalk.reset.hex(
|
|
130272
130274
|
config?.colors?.warning ? config.colors.warning : "#fcc419"
|
|
130273
130275
|
)(message)}
|
|
130274
130276
|
|
|
130277
|
+
|
|
130275
130278
|
`
|
|
130276
130279
|
);
|
|
130277
130280
|
};
|
|
@@ -130281,12 +130284,14 @@ var getLogFn = (config = {}, logLevel = LogLevel.INFO) => {
|
|
|
130281
130284
|
console.info(
|
|
130282
130285
|
`
|
|
130283
130286
|
|
|
130287
|
+
|
|
130284
130288
|
${chalk.bold.hex(config?.colors?.info ? config.colors.info : "#0ea5e9")(
|
|
130285
130289
|
">"
|
|
130286
130290
|
)} ${chalk.bold.bgHex(config?.colors?.info ? config.colors.info : "#0ea5e9").white(" \u{1F4EC} Info ")} ${chalk.reset.hex(
|
|
130287
130291
|
config?.colors?.info ? config.colors.info : "#0ea5e9"
|
|
130288
130292
|
)(message)}
|
|
130289
130293
|
|
|
130294
|
+
|
|
130290
130295
|
`
|
|
130291
130296
|
);
|
|
130292
130297
|
};
|
|
@@ -130296,12 +130301,14 @@ var getLogFn = (config = {}, logLevel = LogLevel.INFO) => {
|
|
|
130296
130301
|
console.info(
|
|
130297
130302
|
`
|
|
130298
130303
|
|
|
130304
|
+
|
|
130299
130305
|
${chalk.bold.hex(config?.colors?.success ? config.colors.success : "#087f5b")(
|
|
130300
130306
|
">"
|
|
130301
130307
|
)} ${chalk.bold.bgHex(config?.colors?.success ? config.colors.success : "#087f5b").white(" \u{1F389} Success ")} ${chalk.reset.hex(
|
|
130302
130308
|
config?.colors?.success ? config.colors.success : "#087f5b"
|
|
130303
130309
|
)(message)}
|
|
130304
130310
|
|
|
130311
|
+
|
|
130305
130312
|
`
|
|
130306
130313
|
);
|
|
130307
130314
|
};
|
|
@@ -130311,12 +130318,14 @@ var getLogFn = (config = {}, logLevel = LogLevel.INFO) => {
|
|
|
130311
130318
|
console.debug(
|
|
130312
130319
|
`
|
|
130313
130320
|
|
|
130321
|
+
|
|
130314
130322
|
${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(
|
|
130315
130323
|
">"
|
|
130316
130324
|
)} ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").white(" \u{1F9EA} Debug ")} ${chalk.reset.hex(
|
|
130317
130325
|
config?.colors?.primary ? config.colors.primary : "#1fb2a6"
|
|
130318
130326
|
)(message)}
|
|
130319
130327
|
|
|
130328
|
+
|
|
130320
130329
|
`
|
|
130321
130330
|
);
|
|
130322
130331
|
};
|
|
@@ -130325,12 +130334,14 @@ var getLogFn = (config = {}, logLevel = LogLevel.INFO) => {
|
|
|
130325
130334
|
console.log(
|
|
130326
130335
|
`
|
|
130327
130336
|
|
|
130337
|
+
|
|
130328
130338
|
${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(
|
|
130329
130339
|
">"
|
|
130330
130340
|
)} ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").white(" \u{1F4E2} System ")} ${chalk.bold.hex(
|
|
130331
130341
|
config?.colors?.primary ? config.colors.primary : "#1fb2a6"
|
|
130332
130342
|
)(message)}
|
|
130333
130343
|
|
|
130344
|
+
|
|
130334
130345
|
`
|
|
130335
130346
|
);
|
|
130336
130347
|
};
|