@storm-software/git-tools 2.63.4 → 2.64.0
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 +18 -0
- package/README.md +1 -1
- package/bin/git.js +63 -21
- package/bin/post-checkout.js +63 -21
- package/bin/post-commit.js +63 -21
- package/bin/post-merge.js +63 -21
- package/bin/pre-commit.js +63 -21
- package/bin/pre-install.js +63 -21
- package/bin/pre-push.js +63 -21
- package/bin/prepare.js +63 -21
- package/bin/version-warning.js +63 -21
- package/lefthook/config.yml +2 -2
- package/package.json +2 -2
- package/src/cli/index.js +63 -21
- package/src/commit/index.js +28 -10
- package/src/commitizen/index.js +28 -10
- package/src/index.js +63 -21
- package/src/release/changelog-renderer.js +16 -15
- package/src/release/index.js +28 -10
package/src/commit/index.js
CHANGED
|
@@ -37317,24 +37317,30 @@ var LightColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,
|
|
|
37317
37317
|
var BrandColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#3fc1b0").describe("The primary brand specific color of the workspace");
|
|
37318
37318
|
var AlternateColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).optional().describe("The alternate brand specific color of the workspace");
|
|
37319
37319
|
var AccentColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).optional().describe("The secondary brand specific color of the workspace");
|
|
37320
|
+
var LinkColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).optional().describe("The color used to display ");
|
|
37320
37321
|
var HelpColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#8256D0").describe("The second brand specific color of the workspace");
|
|
37321
37322
|
var SuccessColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#087f5b").describe("The success color of the workspace");
|
|
37322
37323
|
var InfoColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#316DCA").describe("The informational color of the workspace");
|
|
37323
37324
|
var WarningColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#fcc419").describe("The warning color of the workspace");
|
|
37324
37325
|
var ErrorColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#a40e26").describe("The error color of the workspace");
|
|
37325
37326
|
var FatalColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).optional().describe("The fatal color of the workspace");
|
|
37327
|
+
var PositiveColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#4ade80").describe("The positive number color of the workspace");
|
|
37328
|
+
var NegativeColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#ef4444").describe("The negative number color of the workspace");
|
|
37326
37329
|
var DarkThemeColorConfigSchema = z.object({
|
|
37327
37330
|
foreground: LightColorSchema,
|
|
37328
37331
|
background: DarkColorSchema,
|
|
37329
37332
|
brand: BrandColorSchema,
|
|
37330
37333
|
alternate: AlternateColorSchema,
|
|
37331
37334
|
accent: AccentColorSchema,
|
|
37335
|
+
link: LinkColorSchema,
|
|
37332
37336
|
help: HelpColorSchema,
|
|
37333
37337
|
success: SuccessColorSchema,
|
|
37334
37338
|
info: InfoColorSchema,
|
|
37335
37339
|
warning: WarningColorSchema,
|
|
37336
37340
|
error: ErrorColorSchema,
|
|
37337
|
-
fatal: FatalColorSchema
|
|
37341
|
+
fatal: FatalColorSchema,
|
|
37342
|
+
positive: PositiveColorSchema,
|
|
37343
|
+
negative: NegativeColorSchema
|
|
37338
37344
|
});
|
|
37339
37345
|
var LightThemeColorConfigSchema = z.object({
|
|
37340
37346
|
foreground: DarkColorSchema,
|
|
@@ -37342,12 +37348,15 @@ var LightThemeColorConfigSchema = z.object({
|
|
|
37342
37348
|
brand: BrandColorSchema,
|
|
37343
37349
|
alternate: AlternateColorSchema,
|
|
37344
37350
|
accent: AccentColorSchema,
|
|
37351
|
+
link: LinkColorSchema,
|
|
37345
37352
|
help: HelpColorSchema,
|
|
37346
37353
|
success: SuccessColorSchema,
|
|
37347
37354
|
info: InfoColorSchema,
|
|
37348
37355
|
warning: WarningColorSchema,
|
|
37349
37356
|
error: ErrorColorSchema,
|
|
37350
|
-
fatal: FatalColorSchema
|
|
37357
|
+
fatal: FatalColorSchema,
|
|
37358
|
+
positive: PositiveColorSchema,
|
|
37359
|
+
negative: NegativeColorSchema
|
|
37351
37360
|
});
|
|
37352
37361
|
var MultiThemeColorConfigSchema = z.object({
|
|
37353
37362
|
dark: DarkThemeColorConfigSchema,
|
|
@@ -37359,12 +37368,15 @@ var SingleThemeColorConfigSchema = z.object({
|
|
|
37359
37368
|
brand: BrandColorSchema,
|
|
37360
37369
|
alternate: AlternateColorSchema,
|
|
37361
37370
|
accent: AccentColorSchema,
|
|
37371
|
+
link: LinkColorSchema,
|
|
37362
37372
|
help: HelpColorSchema,
|
|
37363
37373
|
success: SuccessColorSchema,
|
|
37364
37374
|
info: InfoColorSchema,
|
|
37365
37375
|
warning: WarningColorSchema,
|
|
37366
37376
|
error: ErrorColorSchema,
|
|
37367
|
-
fatal: FatalColorSchema
|
|
37377
|
+
fatal: FatalColorSchema,
|
|
37378
|
+
positive: PositiveColorSchema,
|
|
37379
|
+
negative: NegativeColorSchema
|
|
37368
37380
|
});
|
|
37369
37381
|
var RegistryUrlConfigSchema = z.string().trim().toLowerCase().url().optional().describe("A remote registry URL used to publish distributable packages");
|
|
37370
37382
|
var RegistryConfigSchema = z.object({
|
|
@@ -37449,23 +37461,29 @@ var StormConfigSchema = z.object({
|
|
|
37449
37461
|
var DEFAULT_COLOR_CONFIG = {
|
|
37450
37462
|
"light": {
|
|
37451
37463
|
"background": "#fafafa",
|
|
37452
|
-
"foreground": "#
|
|
37464
|
+
"foreground": "#1d1e22",
|
|
37453
37465
|
"brand": "#1fb2a6",
|
|
37466
|
+
"alternate": "#db2777",
|
|
37454
37467
|
"help": "#5C4EE5",
|
|
37455
37468
|
"success": "#087f5b",
|
|
37456
37469
|
"info": "#0550ae",
|
|
37457
37470
|
"warning": "#e3b341",
|
|
37458
|
-
"error": "#a40e26"
|
|
37471
|
+
"error": "#a40e26",
|
|
37472
|
+
"positive": "#22c55e",
|
|
37473
|
+
"negative": "#dc2626"
|
|
37459
37474
|
},
|
|
37460
37475
|
"dark": {
|
|
37461
|
-
"background": "#
|
|
37462
|
-
"foreground": "#
|
|
37463
|
-
"brand": "#
|
|
37464
|
-
"
|
|
37476
|
+
"background": "#1d1e22",
|
|
37477
|
+
"foreground": "#cbd5e1",
|
|
37478
|
+
"brand": "#2dd4bf",
|
|
37479
|
+
"alternate": "#db2777",
|
|
37480
|
+
"help": "#818cf8",
|
|
37465
37481
|
"success": "#10b981",
|
|
37466
37482
|
"info": "#58a6ff",
|
|
37467
37483
|
"warning": "#f3d371",
|
|
37468
|
-
"error": "#d1242f"
|
|
37484
|
+
"error": "#d1242f",
|
|
37485
|
+
"positive": "#22c55e",
|
|
37486
|
+
"negative": "#dc2626"
|
|
37469
37487
|
}
|
|
37470
37488
|
};
|
|
37471
37489
|
var DEFAULT_STORM_CONFIG = {
|
package/src/commitizen/index.js
CHANGED
|
@@ -37264,24 +37264,30 @@ var LightColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,
|
|
|
37264
37264
|
var BrandColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#3fc1b0").describe("The primary brand specific color of the workspace");
|
|
37265
37265
|
var AlternateColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).optional().describe("The alternate brand specific color of the workspace");
|
|
37266
37266
|
var AccentColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).optional().describe("The secondary brand specific color of the workspace");
|
|
37267
|
+
var LinkColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).optional().describe("The color used to display ");
|
|
37267
37268
|
var HelpColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#8256D0").describe("The second brand specific color of the workspace");
|
|
37268
37269
|
var SuccessColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#087f5b").describe("The success color of the workspace");
|
|
37269
37270
|
var InfoColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#316DCA").describe("The informational color of the workspace");
|
|
37270
37271
|
var WarningColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#fcc419").describe("The warning color of the workspace");
|
|
37271
37272
|
var ErrorColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#a40e26").describe("The error color of the workspace");
|
|
37272
37273
|
var FatalColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).optional().describe("The fatal color of the workspace");
|
|
37274
|
+
var PositiveColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#4ade80").describe("The positive number color of the workspace");
|
|
37275
|
+
var NegativeColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#ef4444").describe("The negative number color of the workspace");
|
|
37273
37276
|
var DarkThemeColorConfigSchema = z.object({
|
|
37274
37277
|
foreground: LightColorSchema,
|
|
37275
37278
|
background: DarkColorSchema,
|
|
37276
37279
|
brand: BrandColorSchema,
|
|
37277
37280
|
alternate: AlternateColorSchema,
|
|
37278
37281
|
accent: AccentColorSchema,
|
|
37282
|
+
link: LinkColorSchema,
|
|
37279
37283
|
help: HelpColorSchema,
|
|
37280
37284
|
success: SuccessColorSchema,
|
|
37281
37285
|
info: InfoColorSchema,
|
|
37282
37286
|
warning: WarningColorSchema,
|
|
37283
37287
|
error: ErrorColorSchema,
|
|
37284
|
-
fatal: FatalColorSchema
|
|
37288
|
+
fatal: FatalColorSchema,
|
|
37289
|
+
positive: PositiveColorSchema,
|
|
37290
|
+
negative: NegativeColorSchema
|
|
37285
37291
|
});
|
|
37286
37292
|
var LightThemeColorConfigSchema = z.object({
|
|
37287
37293
|
foreground: DarkColorSchema,
|
|
@@ -37289,12 +37295,15 @@ var LightThemeColorConfigSchema = z.object({
|
|
|
37289
37295
|
brand: BrandColorSchema,
|
|
37290
37296
|
alternate: AlternateColorSchema,
|
|
37291
37297
|
accent: AccentColorSchema,
|
|
37298
|
+
link: LinkColorSchema,
|
|
37292
37299
|
help: HelpColorSchema,
|
|
37293
37300
|
success: SuccessColorSchema,
|
|
37294
37301
|
info: InfoColorSchema,
|
|
37295
37302
|
warning: WarningColorSchema,
|
|
37296
37303
|
error: ErrorColorSchema,
|
|
37297
|
-
fatal: FatalColorSchema
|
|
37304
|
+
fatal: FatalColorSchema,
|
|
37305
|
+
positive: PositiveColorSchema,
|
|
37306
|
+
negative: NegativeColorSchema
|
|
37298
37307
|
});
|
|
37299
37308
|
var MultiThemeColorConfigSchema = z.object({
|
|
37300
37309
|
dark: DarkThemeColorConfigSchema,
|
|
@@ -37306,12 +37315,15 @@ var SingleThemeColorConfigSchema = z.object({
|
|
|
37306
37315
|
brand: BrandColorSchema,
|
|
37307
37316
|
alternate: AlternateColorSchema,
|
|
37308
37317
|
accent: AccentColorSchema,
|
|
37318
|
+
link: LinkColorSchema,
|
|
37309
37319
|
help: HelpColorSchema,
|
|
37310
37320
|
success: SuccessColorSchema,
|
|
37311
37321
|
info: InfoColorSchema,
|
|
37312
37322
|
warning: WarningColorSchema,
|
|
37313
37323
|
error: ErrorColorSchema,
|
|
37314
|
-
fatal: FatalColorSchema
|
|
37324
|
+
fatal: FatalColorSchema,
|
|
37325
|
+
positive: PositiveColorSchema,
|
|
37326
|
+
negative: NegativeColorSchema
|
|
37315
37327
|
});
|
|
37316
37328
|
var RegistryUrlConfigSchema = z.string().trim().toLowerCase().url().optional().describe("A remote registry URL used to publish distributable packages");
|
|
37317
37329
|
var RegistryConfigSchema = z.object({
|
|
@@ -37396,23 +37408,29 @@ var StormConfigSchema = z.object({
|
|
|
37396
37408
|
var DEFAULT_COLOR_CONFIG = {
|
|
37397
37409
|
"light": {
|
|
37398
37410
|
"background": "#fafafa",
|
|
37399
|
-
"foreground": "#
|
|
37411
|
+
"foreground": "#1d1e22",
|
|
37400
37412
|
"brand": "#1fb2a6",
|
|
37413
|
+
"alternate": "#db2777",
|
|
37401
37414
|
"help": "#5C4EE5",
|
|
37402
37415
|
"success": "#087f5b",
|
|
37403
37416
|
"info": "#0550ae",
|
|
37404
37417
|
"warning": "#e3b341",
|
|
37405
|
-
"error": "#a40e26"
|
|
37418
|
+
"error": "#a40e26",
|
|
37419
|
+
"positive": "#22c55e",
|
|
37420
|
+
"negative": "#dc2626"
|
|
37406
37421
|
},
|
|
37407
37422
|
"dark": {
|
|
37408
|
-
"background": "#
|
|
37409
|
-
"foreground": "#
|
|
37410
|
-
"brand": "#
|
|
37411
|
-
"
|
|
37423
|
+
"background": "#1d1e22",
|
|
37424
|
+
"foreground": "#cbd5e1",
|
|
37425
|
+
"brand": "#2dd4bf",
|
|
37426
|
+
"alternate": "#db2777",
|
|
37427
|
+
"help": "#818cf8",
|
|
37412
37428
|
"success": "#10b981",
|
|
37413
37429
|
"info": "#58a6ff",
|
|
37414
37430
|
"warning": "#f3d371",
|
|
37415
|
-
"error": "#d1242f"
|
|
37431
|
+
"error": "#d1242f",
|
|
37432
|
+
"positive": "#22c55e",
|
|
37433
|
+
"negative": "#dc2626"
|
|
37416
37434
|
}
|
|
37417
37435
|
};
|
|
37418
37436
|
var DEFAULT_STORM_CONFIG = {
|
package/src/index.js
CHANGED
|
@@ -214465,11 +214465,11 @@ function hash(object2, options8 = {}) {
|
|
|
214465
214465
|
init_dist();
|
|
214466
214466
|
import { statSync as statSync2, promises as promises2 } from "node:fs";
|
|
214467
214467
|
|
|
214468
|
-
// node_modules/.pnpm/acorn@8.
|
|
214469
|
-
var astralIdentifierCodes = [509, 0, 227, 0, 150, 4, 294, 9, 1368, 2, 2, 1, 6, 3, 41, 2, 5, 0, 166, 1, 574, 3, 9, 9,
|
|
214470
|
-
var astralIdentifierStartCodes = [0, 11, 2, 25, 2, 18, 2, 1, 2, 14, 3, 13, 35, 122, 70, 52, 268, 28, 4, 48, 48, 31, 14, 29, 6, 37, 11, 29, 3, 35, 5, 7, 2, 4, 43, 157, 19, 35, 5, 35, 5, 39, 9, 51, 13, 10, 2, 14, 2, 6, 2, 1, 2, 10, 2, 14, 2, 6, 2, 1,
|
|
214471
|
-
var nonASCIIidentifierChars = "\u200C\u200D\xB7\u0300-\u036F\u0387\u0483-\u0487\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u0610-\u061A\u064B-\u0669\u0670\u06D6-\u06DC\u06DF-\u06E4\u06E7\u06E8\u06EA-\u06ED\u06F0-\u06F9\u0711\u0730-\u074A\u07A6-\u07B0\u07C0-\u07C9\u07EB-\u07F3\u07FD\u0816-\u0819\u081B-\u0823\u0825-\u0827\u0829-\u082D\u0859-\u085B\
|
|
214472
|
-
var nonASCIIidentifierStartChars = "\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0560-\u0588\u05D0-\u05EA\u05EF-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u0870-\u0887\u0889-\u088E\u08A0-\u08C9\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C5D\u0C60\u0C61\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D04-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F8\u1700-\u1711\u171F-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1878\u1880-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4C\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1C80-\
|
|
214468
|
+
// node_modules/.pnpm/acorn@8.13.0/node_modules/acorn/dist/acorn.mjs
|
|
214469
|
+
var astralIdentifierCodes = [509, 0, 227, 0, 150, 4, 294, 9, 1368, 2, 2, 1, 6, 3, 41, 2, 5, 0, 166, 1, 574, 3, 9, 9, 7, 9, 32, 4, 318, 1, 80, 3, 71, 10, 50, 3, 123, 2, 54, 14, 32, 10, 3, 1, 11, 3, 46, 10, 8, 0, 46, 9, 7, 2, 37, 13, 2, 9, 6, 1, 45, 0, 13, 2, 49, 13, 9, 3, 2, 11, 83, 11, 7, 0, 3, 0, 158, 11, 6, 9, 7, 3, 56, 1, 2, 6, 3, 1, 3, 2, 10, 0, 11, 1, 3, 6, 4, 4, 68, 8, 2, 0, 3, 0, 2, 3, 2, 4, 2, 0, 15, 1, 83, 17, 10, 9, 5, 0, 82, 19, 13, 9, 214, 6, 3, 8, 28, 1, 83, 16, 16, 9, 82, 12, 9, 9, 7, 19, 58, 14, 5, 9, 243, 14, 166, 9, 71, 5, 2, 1, 3, 3, 2, 0, 2, 1, 13, 9, 120, 6, 3, 6, 4, 0, 29, 9, 41, 6, 2, 3, 9, 0, 10, 10, 47, 15, 343, 9, 54, 7, 2, 7, 17, 9, 57, 21, 2, 13, 123, 5, 4, 0, 2, 1, 2, 6, 2, 0, 9, 9, 49, 4, 2, 1, 2, 4, 9, 9, 330, 3, 10, 1, 2, 0, 49, 6, 4, 4, 14, 10, 5350, 0, 7, 14, 11465, 27, 2343, 9, 87, 9, 39, 4, 60, 6, 26, 9, 535, 9, 470, 0, 2, 54, 8, 3, 82, 0, 12, 1, 19628, 1, 4178, 9, 519, 45, 3, 22, 543, 4, 4, 5, 9, 7, 3, 6, 31, 3, 149, 2, 1418, 49, 513, 54, 5, 49, 9, 0, 15, 0, 23, 4, 2, 14, 1361, 6, 2, 16, 3, 6, 2, 1, 2, 4, 101, 0, 161, 6, 10, 9, 357, 0, 62, 13, 499, 13, 245, 1, 2, 9, 726, 6, 110, 6, 6, 9, 4759, 9, 787719, 239];
|
|
214470
|
+
var astralIdentifierStartCodes = [0, 11, 2, 25, 2, 18, 2, 1, 2, 14, 3, 13, 35, 122, 70, 52, 268, 28, 4, 48, 48, 31, 14, 29, 6, 37, 11, 29, 3, 35, 5, 7, 2, 4, 43, 157, 19, 35, 5, 35, 5, 39, 9, 51, 13, 10, 2, 14, 2, 6, 2, 1, 2, 10, 2, 14, 2, 6, 2, 1, 4, 51, 13, 310, 10, 21, 11, 7, 25, 5, 2, 41, 2, 8, 70, 5, 3, 0, 2, 43, 2, 1, 4, 0, 3, 22, 11, 22, 10, 30, 66, 18, 2, 1, 11, 21, 11, 25, 71, 55, 7, 1, 65, 0, 16, 3, 2, 2, 2, 28, 43, 28, 4, 28, 36, 7, 2, 27, 28, 53, 11, 21, 11, 18, 14, 17, 111, 72, 56, 50, 14, 50, 14, 35, 39, 27, 10, 22, 251, 41, 7, 1, 17, 2, 60, 28, 11, 0, 9, 21, 43, 17, 47, 20, 28, 22, 13, 52, 58, 1, 3, 0, 14, 44, 33, 24, 27, 35, 30, 0, 3, 0, 9, 34, 4, 0, 13, 47, 15, 3, 22, 0, 2, 0, 36, 17, 2, 24, 20, 1, 64, 6, 2, 0, 2, 3, 2, 14, 2, 9, 8, 46, 39, 7, 3, 1, 3, 21, 2, 6, 2, 1, 2, 4, 4, 0, 19, 0, 13, 4, 31, 9, 2, 0, 3, 0, 2, 37, 2, 0, 26, 0, 2, 0, 45, 52, 19, 3, 21, 2, 31, 47, 21, 1, 2, 0, 185, 46, 42, 3, 37, 47, 21, 0, 60, 42, 14, 0, 72, 26, 38, 6, 186, 43, 117, 63, 32, 7, 3, 0, 3, 7, 2, 1, 2, 23, 16, 0, 2, 0, 95, 7, 3, 38, 17, 0, 2, 0, 29, 0, 11, 39, 8, 0, 22, 0, 12, 45, 20, 0, 19, 72, 200, 32, 32, 8, 2, 36, 18, 0, 50, 29, 113, 6, 2, 1, 2, 37, 22, 0, 26, 5, 2, 1, 2, 31, 15, 0, 328, 18, 16, 0, 2, 12, 2, 33, 125, 0, 80, 921, 103, 110, 18, 195, 2637, 96, 16, 1071, 18, 5, 26, 3994, 6, 582, 6842, 29, 1763, 568, 8, 30, 18, 78, 18, 29, 19, 47, 17, 3, 32, 20, 6, 18, 433, 44, 212, 63, 129, 74, 6, 0, 67, 12, 65, 1, 2, 0, 29, 6135, 9, 1237, 42, 9, 8936, 3, 2, 6, 2, 1, 2, 290, 16, 0, 30, 2, 3, 0, 15, 3, 9, 395, 2309, 106, 6, 12, 4, 8, 8, 9, 5991, 84, 2, 70, 2, 1, 3, 0, 3, 1, 3, 3, 2, 11, 2, 0, 2, 6, 2, 64, 2, 3, 3, 7, 2, 6, 2, 27, 2, 3, 2, 4, 2, 0, 4, 6, 2, 339, 3, 24, 2, 24, 2, 30, 2, 24, 2, 30, 2, 24, 2, 30, 2, 24, 2, 30, 2, 24, 2, 7, 1845, 30, 7, 5, 262, 61, 147, 44, 11, 6, 17, 0, 322, 29, 19, 43, 485, 27, 229, 29, 3, 0, 496, 6, 2, 3, 2, 1, 2, 14, 2, 196, 60, 67, 8, 0, 1205, 3, 2, 26, 2, 1, 2, 0, 3, 0, 2, 9, 2, 3, 2, 0, 2, 0, 7, 0, 5, 0, 2, 0, 2, 0, 2, 2, 2, 1, 2, 0, 3, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 1, 2, 0, 3, 3, 2, 6, 2, 3, 2, 3, 2, 0, 2, 9, 2, 16, 6, 2, 2, 4, 2, 16, 4421, 42719, 33, 4153, 7, 221, 3, 5761, 15, 7472, 16, 621, 2467, 541, 1507, 4938, 6, 4191];
|
|
214471
|
+
var nonASCIIidentifierChars = "\u200C\u200D\xB7\u0300-\u036F\u0387\u0483-\u0487\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u0610-\u061A\u064B-\u0669\u0670\u06D6-\u06DC\u06DF-\u06E4\u06E7\u06E8\u06EA-\u06ED\u06F0-\u06F9\u0711\u0730-\u074A\u07A6-\u07B0\u07C0-\u07C9\u07EB-\u07F3\u07FD\u0816-\u0819\u081B-\u0823\u0825-\u0827\u0829-\u082D\u0859-\u085B\u0897-\u089F\u08CA-\u08E1\u08E3-\u0903\u093A-\u093C\u093E-\u094F\u0951-\u0957\u0962\u0963\u0966-\u096F\u0981-\u0983\u09BC\u09BE-\u09C4\u09C7\u09C8\u09CB-\u09CD\u09D7\u09E2\u09E3\u09E6-\u09EF\u09FE\u0A01-\u0A03\u0A3C\u0A3E-\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A66-\u0A71\u0A75\u0A81-\u0A83\u0ABC\u0ABE-\u0AC5\u0AC7-\u0AC9\u0ACB-\u0ACD\u0AE2\u0AE3\u0AE6-\u0AEF\u0AFA-\u0AFF\u0B01-\u0B03\u0B3C\u0B3E-\u0B44\u0B47\u0B48\u0B4B-\u0B4D\u0B55-\u0B57\u0B62\u0B63\u0B66-\u0B6F\u0B82\u0BBE-\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCD\u0BD7\u0BE6-\u0BEF\u0C00-\u0C04\u0C3C\u0C3E-\u0C44\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C62\u0C63\u0C66-\u0C6F\u0C81-\u0C83\u0CBC\u0CBE-\u0CC4\u0CC6-\u0CC8\u0CCA-\u0CCD\u0CD5\u0CD6\u0CE2\u0CE3\u0CE6-\u0CEF\u0CF3\u0D00-\u0D03\u0D3B\u0D3C\u0D3E-\u0D44\u0D46-\u0D48\u0D4A-\u0D4D\u0D57\u0D62\u0D63\u0D66-\u0D6F\u0D81-\u0D83\u0DCA\u0DCF-\u0DD4\u0DD6\u0DD8-\u0DDF\u0DE6-\u0DEF\u0DF2\u0DF3\u0E31\u0E34-\u0E3A\u0E47-\u0E4E\u0E50-\u0E59\u0EB1\u0EB4-\u0EBC\u0EC8-\u0ECE\u0ED0-\u0ED9\u0F18\u0F19\u0F20-\u0F29\u0F35\u0F37\u0F39\u0F3E\u0F3F\u0F71-\u0F84\u0F86\u0F87\u0F8D-\u0F97\u0F99-\u0FBC\u0FC6\u102B-\u103E\u1040-\u1049\u1056-\u1059\u105E-\u1060\u1062-\u1064\u1067-\u106D\u1071-\u1074\u1082-\u108D\u108F-\u109D\u135D-\u135F\u1369-\u1371\u1712-\u1715\u1732-\u1734\u1752\u1753\u1772\u1773\u17B4-\u17D3\u17DD\u17E0-\u17E9\u180B-\u180D\u180F-\u1819\u18A9\u1920-\u192B\u1930-\u193B\u1946-\u194F\u19D0-\u19DA\u1A17-\u1A1B\u1A55-\u1A5E\u1A60-\u1A7C\u1A7F-\u1A89\u1A90-\u1A99\u1AB0-\u1ABD\u1ABF-\u1ACE\u1B00-\u1B04\u1B34-\u1B44\u1B50-\u1B59\u1B6B-\u1B73\u1B80-\u1B82\u1BA1-\u1BAD\u1BB0-\u1BB9\u1BE6-\u1BF3\u1C24-\u1C37\u1C40-\u1C49\u1C50-\u1C59\u1CD0-\u1CD2\u1CD4-\u1CE8\u1CED\u1CF4\u1CF7-\u1CF9\u1DC0-\u1DFF\u200C\u200D\u203F\u2040\u2054\u20D0-\u20DC\u20E1\u20E5-\u20F0\u2CEF-\u2CF1\u2D7F\u2DE0-\u2DFF\u302A-\u302F\u3099\u309A\u30FB\uA620-\uA629\uA66F\uA674-\uA67D\uA69E\uA69F\uA6F0\uA6F1\uA802\uA806\uA80B\uA823-\uA827\uA82C\uA880\uA881\uA8B4-\uA8C5\uA8D0-\uA8D9\uA8E0-\uA8F1\uA8FF-\uA909\uA926-\uA92D\uA947-\uA953\uA980-\uA983\uA9B3-\uA9C0\uA9D0-\uA9D9\uA9E5\uA9F0-\uA9F9\uAA29-\uAA36\uAA43\uAA4C\uAA4D\uAA50-\uAA59\uAA7B-\uAA7D\uAAB0\uAAB2-\uAAB4\uAAB7\uAAB8\uAABE\uAABF\uAAC1\uAAEB-\uAAEF\uAAF5\uAAF6\uABE3-\uABEA\uABEC\uABED\uABF0-\uABF9\uFB1E\uFE00-\uFE0F\uFE20-\uFE2F\uFE33\uFE34\uFE4D-\uFE4F\uFF10-\uFF19\uFF3F\uFF65";
|
|
214472
|
+
var nonASCIIidentifierStartChars = "\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0560-\u0588\u05D0-\u05EA\u05EF-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u0870-\u0887\u0889-\u088E\u08A0-\u08C9\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C5D\u0C60\u0C61\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D04-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F8\u1700-\u1711\u171F-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1878\u1880-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4C\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1C80-\u1C8A\u1C90-\u1CBA\u1CBD-\u1CBF\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5\u1CF6\u1CFA\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2118-\u211D\u2124\u2126\u2128\u212A-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2160-\u2188\u2C00-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303C\u3041-\u3096\u309B-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u31A0-\u31BF\u31F0-\u31FF\u3400-\u4DBF\u4E00-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6EF\uA717-\uA71F\uA722-\uA788\uA78B-\uA7CD\uA7D0\uA7D1\uA7D3\uA7D5-\uA7DC\uA7F2-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA8FD\uA8FE\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB69\uAB70-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC";
|
|
214473
214473
|
var reservedWords = {
|
|
214474
214474
|
3: "abstract boolean byte char class double enum export extends final float goto implements import int interface long native package private protected public short static super synchronized throws transient volatile",
|
|
214475
214475
|
5: "class enum extends super const export import",
|
|
@@ -215013,7 +215013,7 @@ Parser.tokenizer = function tokenizer(input, options8) {
|
|
|
215013
215013
|
};
|
|
215014
215014
|
Object.defineProperties(Parser.prototype, prototypeAccessors);
|
|
215015
215015
|
var pp$9 = Parser.prototype;
|
|
215016
|
-
var literal = /^(?:'((
|
|
215016
|
+
var literal = /^(?:'((?:\\[^]|[^'\\])*?)'|"((?:\\[^]|[^"\\])*?)")/;
|
|
215017
215017
|
pp$9.strictDirective = function(start2) {
|
|
215018
215018
|
if (this.options.ecmaVersion < 5) {
|
|
215019
215019
|
return false;
|
|
@@ -219836,7 +219836,7 @@ pp.readWord = function() {
|
|
|
219836
219836
|
}
|
|
219837
219837
|
return this.finishToken(type2, word);
|
|
219838
219838
|
};
|
|
219839
|
-
var version = "8.
|
|
219839
|
+
var version = "8.13.0";
|
|
219840
219840
|
Parser.acorn = {
|
|
219841
219841
|
Parser,
|
|
219842
219842
|
version,
|
|
@@ -225740,24 +225740,30 @@ var LightColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1
|
|
|
225740
225740
|
var BrandColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#3fc1b0").describe("The primary brand specific color of the workspace");
|
|
225741
225741
|
var AlternateColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).optional().describe("The alternate brand specific color of the workspace");
|
|
225742
225742
|
var AccentColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).optional().describe("The secondary brand specific color of the workspace");
|
|
225743
|
+
var LinkColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).optional().describe("The color used to display ");
|
|
225743
225744
|
var HelpColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#8256D0").describe("The second brand specific color of the workspace");
|
|
225744
225745
|
var SuccessColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#087f5b").describe("The success color of the workspace");
|
|
225745
225746
|
var InfoColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#316DCA").describe("The informational color of the workspace");
|
|
225746
225747
|
var WarningColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#fcc419").describe("The warning color of the workspace");
|
|
225747
225748
|
var ErrorColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#a40e26").describe("The error color of the workspace");
|
|
225748
225749
|
var FatalColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).optional().describe("The fatal color of the workspace");
|
|
225750
|
+
var PositiveColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#4ade80").describe("The positive number color of the workspace");
|
|
225751
|
+
var NegativeColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#ef4444").describe("The negative number color of the workspace");
|
|
225749
225752
|
var DarkThemeColorConfigSchema = z2.object({
|
|
225750
225753
|
foreground: LightColorSchema,
|
|
225751
225754
|
background: DarkColorSchema,
|
|
225752
225755
|
brand: BrandColorSchema,
|
|
225753
225756
|
alternate: AlternateColorSchema,
|
|
225754
225757
|
accent: AccentColorSchema,
|
|
225758
|
+
link: LinkColorSchema,
|
|
225755
225759
|
help: HelpColorSchema,
|
|
225756
225760
|
success: SuccessColorSchema,
|
|
225757
225761
|
info: InfoColorSchema,
|
|
225758
225762
|
warning: WarningColorSchema,
|
|
225759
225763
|
error: ErrorColorSchema,
|
|
225760
|
-
fatal: FatalColorSchema
|
|
225764
|
+
fatal: FatalColorSchema,
|
|
225765
|
+
positive: PositiveColorSchema,
|
|
225766
|
+
negative: NegativeColorSchema
|
|
225761
225767
|
});
|
|
225762
225768
|
var LightThemeColorConfigSchema = z2.object({
|
|
225763
225769
|
foreground: DarkColorSchema,
|
|
@@ -225765,12 +225771,15 @@ var LightThemeColorConfigSchema = z2.object({
|
|
|
225765
225771
|
brand: BrandColorSchema,
|
|
225766
225772
|
alternate: AlternateColorSchema,
|
|
225767
225773
|
accent: AccentColorSchema,
|
|
225774
|
+
link: LinkColorSchema,
|
|
225768
225775
|
help: HelpColorSchema,
|
|
225769
225776
|
success: SuccessColorSchema,
|
|
225770
225777
|
info: InfoColorSchema,
|
|
225771
225778
|
warning: WarningColorSchema,
|
|
225772
225779
|
error: ErrorColorSchema,
|
|
225773
|
-
fatal: FatalColorSchema
|
|
225780
|
+
fatal: FatalColorSchema,
|
|
225781
|
+
positive: PositiveColorSchema,
|
|
225782
|
+
negative: NegativeColorSchema
|
|
225774
225783
|
});
|
|
225775
225784
|
var MultiThemeColorConfigSchema = z2.object({
|
|
225776
225785
|
dark: DarkThemeColorConfigSchema,
|
|
@@ -225782,12 +225791,15 @@ var SingleThemeColorConfigSchema = z2.object({
|
|
|
225782
225791
|
brand: BrandColorSchema,
|
|
225783
225792
|
alternate: AlternateColorSchema,
|
|
225784
225793
|
accent: AccentColorSchema,
|
|
225794
|
+
link: LinkColorSchema,
|
|
225785
225795
|
help: HelpColorSchema,
|
|
225786
225796
|
success: SuccessColorSchema,
|
|
225787
225797
|
info: InfoColorSchema,
|
|
225788
225798
|
warning: WarningColorSchema,
|
|
225789
225799
|
error: ErrorColorSchema,
|
|
225790
|
-
fatal: FatalColorSchema
|
|
225800
|
+
fatal: FatalColorSchema,
|
|
225801
|
+
positive: PositiveColorSchema,
|
|
225802
|
+
negative: NegativeColorSchema
|
|
225791
225803
|
});
|
|
225792
225804
|
var RegistryUrlConfigSchema = z2.string().trim().toLowerCase().url().optional().describe("A remote registry URL used to publish distributable packages");
|
|
225793
225805
|
var RegistryConfigSchema = z2.object({
|
|
@@ -225888,23 +225900,29 @@ import { join as join3 } from "node:path";
|
|
|
225888
225900
|
var DEFAULT_COLOR_CONFIG = {
|
|
225889
225901
|
"light": {
|
|
225890
225902
|
"background": "#fafafa",
|
|
225891
|
-
"foreground": "#
|
|
225903
|
+
"foreground": "#1d1e22",
|
|
225892
225904
|
"brand": "#1fb2a6",
|
|
225905
|
+
"alternate": "#db2777",
|
|
225893
225906
|
"help": "#5C4EE5",
|
|
225894
225907
|
"success": "#087f5b",
|
|
225895
225908
|
"info": "#0550ae",
|
|
225896
225909
|
"warning": "#e3b341",
|
|
225897
|
-
"error": "#a40e26"
|
|
225910
|
+
"error": "#a40e26",
|
|
225911
|
+
"positive": "#22c55e",
|
|
225912
|
+
"negative": "#dc2626"
|
|
225898
225913
|
},
|
|
225899
225914
|
"dark": {
|
|
225900
|
-
"background": "#
|
|
225901
|
-
"foreground": "#
|
|
225902
|
-
"brand": "#
|
|
225903
|
-
"
|
|
225915
|
+
"background": "#1d1e22",
|
|
225916
|
+
"foreground": "#cbd5e1",
|
|
225917
|
+
"brand": "#2dd4bf",
|
|
225918
|
+
"alternate": "#db2777",
|
|
225919
|
+
"help": "#818cf8",
|
|
225904
225920
|
"success": "#10b981",
|
|
225905
225921
|
"info": "#58a6ff",
|
|
225906
225922
|
"warning": "#f3d371",
|
|
225907
|
-
"error": "#d1242f"
|
|
225923
|
+
"error": "#d1242f",
|
|
225924
|
+
"positive": "#22c55e",
|
|
225925
|
+
"negative": "#dc2626"
|
|
225908
225926
|
}
|
|
225909
225927
|
};
|
|
225910
225928
|
var DEFAULT_STORM_CONFIG = {
|
|
@@ -225968,7 +225986,7 @@ var getDefaultConfig = (config2 = {}, root3) => {
|
|
|
225968
225986
|
}
|
|
225969
225987
|
return ret;
|
|
225970
225988
|
}, {}),
|
|
225971
|
-
colors: { ...
|
|
225989
|
+
colors: config2.colors ? { ...config2.colors } : { ...DEFAULT_COLOR_CONFIG },
|
|
225972
225990
|
workspaceRoot: workspaceRoot3,
|
|
225973
225991
|
name,
|
|
225974
225992
|
namespace,
|
|
@@ -225976,7 +225994,7 @@ var getDefaultConfig = (config2 = {}, root3) => {
|
|
|
225976
225994
|
license: license ?? DEFAULT_STORM_CONFIG.license,
|
|
225977
225995
|
homepage: homepage ?? DEFAULT_STORM_CONFIG.homepage,
|
|
225978
225996
|
docs: `${homepage ?? DEFAULT_STORM_CONFIG.homepage}/docs`,
|
|
225979
|
-
licensing: `${homepage ?? DEFAULT_STORM_CONFIG.homepage}/
|
|
225997
|
+
licensing: `${homepage ?? DEFAULT_STORM_CONFIG.homepage}/license`,
|
|
225980
225998
|
extensions: {
|
|
225981
225999
|
...config2.extensions
|
|
225982
226000
|
}
|
|
@@ -226350,12 +226368,15 @@ var getSingleThemeColorConfigEnv = (prefix) => {
|
|
|
226350
226368
|
brand: process.env[`${prefix}BRAND`],
|
|
226351
226369
|
alternate: process.env[`${prefix}ALTERNATE`],
|
|
226352
226370
|
accent: process.env[`${prefix}ACCENT`],
|
|
226371
|
+
link: process.env[`${prefix}LINK`],
|
|
226353
226372
|
help: process.env[`${prefix}HELP`],
|
|
226354
226373
|
success: process.env[`${prefix}SUCCESS`],
|
|
226355
226374
|
info: process.env[`${prefix}INFO`],
|
|
226356
226375
|
warning: process.env[`${prefix}WARNING`],
|
|
226357
226376
|
error: process.env[`${prefix}ERROR`],
|
|
226358
|
-
fatal: process.env[`${prefix}FATAL`]
|
|
226377
|
+
fatal: process.env[`${prefix}FATAL`],
|
|
226378
|
+
positive: process.env[`${prefix}POSITIVE`],
|
|
226379
|
+
negative: process.env[`${prefix}NEGATIVE`]
|
|
226359
226380
|
};
|
|
226360
226381
|
};
|
|
226361
226382
|
var getMultiThemeColorConfigEnv = (prefix) => {
|
|
@@ -226373,12 +226394,15 @@ var getBaseThemeColorConfigEnv = (prefix) => {
|
|
|
226373
226394
|
brand: process.env[`${prefix}BRAND`],
|
|
226374
226395
|
alternate: process.env[`${prefix}ALTERNATE`],
|
|
226375
226396
|
accent: process.env[`${prefix}ACCENT`],
|
|
226397
|
+
link: process.env[`${prefix}LINK`],
|
|
226376
226398
|
help: process.env[`${prefix}HELP`],
|
|
226377
226399
|
success: process.env[`${prefix}SUCCESS`],
|
|
226378
226400
|
info: process.env[`${prefix}INFO`],
|
|
226379
226401
|
warning: process.env[`${prefix}WARNING`],
|
|
226380
226402
|
error: process.env[`${prefix}ERROR`],
|
|
226381
|
-
fatal: process.env[`${prefix}FATAL`]
|
|
226403
|
+
fatal: process.env[`${prefix}FATAL`],
|
|
226404
|
+
positive: process.env[`${prefix}POSITIVE`],
|
|
226405
|
+
negative: process.env[`${prefix}NEGATIVE`]
|
|
226382
226406
|
};
|
|
226383
226407
|
};
|
|
226384
226408
|
|
|
@@ -226580,6 +226604,9 @@ var setSingleThemeColorConfigEnv = (prefix, config2) => {
|
|
|
226580
226604
|
if (config2.accent) {
|
|
226581
226605
|
process.env[`${prefix}ACCENT`] = config2.accent;
|
|
226582
226606
|
}
|
|
226607
|
+
if (config2.link) {
|
|
226608
|
+
process.env[`${prefix}LINK`] = config2.link;
|
|
226609
|
+
}
|
|
226583
226610
|
if (config2.help) {
|
|
226584
226611
|
process.env[`${prefix}HELP`] = config2.help;
|
|
226585
226612
|
}
|
|
@@ -226598,6 +226625,12 @@ var setSingleThemeColorConfigEnv = (prefix, config2) => {
|
|
|
226598
226625
|
if (config2.fatal) {
|
|
226599
226626
|
process.env[`${prefix}FATAL`] = config2.fatal;
|
|
226600
226627
|
}
|
|
226628
|
+
if (config2.positive) {
|
|
226629
|
+
process.env[`${prefix}POSITIVE`] = config2.positive;
|
|
226630
|
+
}
|
|
226631
|
+
if (config2.negative) {
|
|
226632
|
+
process.env[`${prefix}NEGATIVE`] = config2.negative;
|
|
226633
|
+
}
|
|
226601
226634
|
};
|
|
226602
226635
|
var setMultiThemeColorConfigEnv = (prefix, config2) => {
|
|
226603
226636
|
return {
|
|
@@ -226621,6 +226654,9 @@ var setBaseThemeColorConfigEnv = (prefix, config2) => {
|
|
|
226621
226654
|
if (config2.accent) {
|
|
226622
226655
|
process.env[`${prefix}ACCENT`] = config2.accent;
|
|
226623
226656
|
}
|
|
226657
|
+
if (config2.link) {
|
|
226658
|
+
process.env[`${prefix}LINK`] = config2.link;
|
|
226659
|
+
}
|
|
226624
226660
|
if (config2.help) {
|
|
226625
226661
|
process.env[`${prefix}HELP`] = config2.help;
|
|
226626
226662
|
}
|
|
@@ -226639,6 +226675,12 @@ var setBaseThemeColorConfigEnv = (prefix, config2) => {
|
|
|
226639
226675
|
if (config2.fatal) {
|
|
226640
226676
|
process.env[`${prefix}FATAL`] = config2.fatal;
|
|
226641
226677
|
}
|
|
226678
|
+
if (config2.positive) {
|
|
226679
|
+
process.env[`${prefix}POSITIVE`] = config2.positive;
|
|
226680
|
+
}
|
|
226681
|
+
if (config2.negative) {
|
|
226682
|
+
process.env[`${prefix}NEGATIVE`] = config2.negative;
|
|
226683
|
+
}
|
|
226642
226684
|
};
|
|
226643
226685
|
|
|
226644
226686
|
// packages/config-tools/src/create-storm-config.ts
|
|
@@ -9534,9 +9534,9 @@ var require_proxy_from_env = __commonJS({
|
|
|
9534
9534
|
}
|
|
9535
9535
|
});
|
|
9536
9536
|
|
|
9537
|
-
// node_modules/.pnpm/ms@2.1.
|
|
9537
|
+
// node_modules/.pnpm/ms@2.1.3/node_modules/ms/index.js
|
|
9538
9538
|
var require_ms = __commonJS({
|
|
9539
|
-
"node_modules/.pnpm/ms@2.1.
|
|
9539
|
+
"node_modules/.pnpm/ms@2.1.3/node_modules/ms/index.js"(exports, module) {
|
|
9540
9540
|
var s = 1e3;
|
|
9541
9541
|
var m = s * 60;
|
|
9542
9542
|
var h = m * 60;
|
|
@@ -9650,9 +9650,9 @@ var require_ms = __commonJS({
|
|
|
9650
9650
|
}
|
|
9651
9651
|
});
|
|
9652
9652
|
|
|
9653
|
-
// node_modules/.pnpm/debug@4.3.
|
|
9653
|
+
// node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/common.js
|
|
9654
9654
|
var require_common = __commonJS({
|
|
9655
|
-
"node_modules/.pnpm/debug@4.3.
|
|
9655
|
+
"node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/common.js"(exports, module) {
|
|
9656
9656
|
function setup(env) {
|
|
9657
9657
|
createDebug.debug = createDebug;
|
|
9658
9658
|
createDebug.default = createDebug;
|
|
@@ -9813,9 +9813,9 @@ var require_common = __commonJS({
|
|
|
9813
9813
|
}
|
|
9814
9814
|
});
|
|
9815
9815
|
|
|
9816
|
-
// node_modules/.pnpm/debug@4.3.
|
|
9816
|
+
// node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/browser.js
|
|
9817
9817
|
var require_browser = __commonJS({
|
|
9818
|
-
"node_modules/.pnpm/debug@4.3.
|
|
9818
|
+
"node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/browser.js"(exports, module) {
|
|
9819
9819
|
exports.formatArgs = formatArgs;
|
|
9820
9820
|
exports.save = save;
|
|
9821
9821
|
exports.load = load;
|
|
@@ -9915,10 +9915,11 @@ var require_browser = __commonJS({
|
|
|
9915
9915
|
if (typeof navigator !== "undefined" && navigator.userAgent && navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/)) {
|
|
9916
9916
|
return false;
|
|
9917
9917
|
}
|
|
9918
|
+
let m;
|
|
9918
9919
|
return typeof document !== "undefined" && document.documentElement && document.documentElement.style && document.documentElement.style.WebkitAppearance || // Is firebug? http://stackoverflow.com/a/398120/376773
|
|
9919
9920
|
typeof window !== "undefined" && window.console && (window.console.firebug || window.console.exception && window.console.table) || // Is firefox >= v31?
|
|
9920
9921
|
// https://developer.mozilla.org/en-US/docs/Tools/Web_Console#Styling_messages
|
|
9921
|
-
typeof navigator !== "undefined" && navigator.userAgent && navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/) && parseInt(
|
|
9922
|
+
typeof navigator !== "undefined" && navigator.userAgent && (m = navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/)) && parseInt(m[1], 10) >= 31 || // Double check webkit in userAgent just in case we are in a worker
|
|
9922
9923
|
typeof navigator !== "undefined" && navigator.userAgent && navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/);
|
|
9923
9924
|
}
|
|
9924
9925
|
function formatArgs(args) {
|
|
@@ -10097,9 +10098,9 @@ var require_supports_color = __commonJS({
|
|
|
10097
10098
|
}
|
|
10098
10099
|
});
|
|
10099
10100
|
|
|
10100
|
-
// node_modules/.pnpm/debug@4.3.
|
|
10101
|
+
// node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/node.js
|
|
10101
10102
|
var require_node = __commonJS({
|
|
10102
|
-
"node_modules/.pnpm/debug@4.3.
|
|
10103
|
+
"node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/node.js"(exports, module) {
|
|
10103
10104
|
var tty = __require("tty");
|
|
10104
10105
|
var util2 = __require("util");
|
|
10105
10106
|
exports.init = init;
|
|
@@ -10271,9 +10272,9 @@ var require_node = __commonJS({
|
|
|
10271
10272
|
}
|
|
10272
10273
|
});
|
|
10273
10274
|
|
|
10274
|
-
// node_modules/.pnpm/debug@4.3.
|
|
10275
|
+
// node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/index.js
|
|
10275
10276
|
var require_src = __commonJS({
|
|
10276
|
-
"node_modules/.pnpm/debug@4.3.
|
|
10277
|
+
"node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/index.js"(exports, module) {
|
|
10277
10278
|
if (typeof process === "undefined" || process.type === "renderer" || process.browser === true || process.__nwjs) {
|
|
10278
10279
|
module.exports = require_browser();
|
|
10279
10280
|
} else {
|
|
@@ -10282,9 +10283,9 @@ var require_src = __commonJS({
|
|
|
10282
10283
|
}
|
|
10283
10284
|
});
|
|
10284
10285
|
|
|
10285
|
-
// node_modules/.pnpm/follow-redirects@1.15.6_debug@4.3.
|
|
10286
|
+
// node_modules/.pnpm/follow-redirects@1.15.6_debug@4.3.7/node_modules/follow-redirects/debug.js
|
|
10286
10287
|
var require_debug = __commonJS({
|
|
10287
|
-
"node_modules/.pnpm/follow-redirects@1.15.6_debug@4.3.
|
|
10288
|
+
"node_modules/.pnpm/follow-redirects@1.15.6_debug@4.3.7/node_modules/follow-redirects/debug.js"(exports, module) {
|
|
10288
10289
|
var debug;
|
|
10289
10290
|
module.exports = function() {
|
|
10290
10291
|
if (!debug) {
|
|
@@ -10302,9 +10303,9 @@ var require_debug = __commonJS({
|
|
|
10302
10303
|
}
|
|
10303
10304
|
});
|
|
10304
10305
|
|
|
10305
|
-
// node_modules/.pnpm/follow-redirects@1.15.6_debug@4.3.
|
|
10306
|
+
// node_modules/.pnpm/follow-redirects@1.15.6_debug@4.3.7/node_modules/follow-redirects/index.js
|
|
10306
10307
|
var require_follow_redirects = __commonJS({
|
|
10307
|
-
"node_modules/.pnpm/follow-redirects@1.15.6_debug@4.3.
|
|
10308
|
+
"node_modules/.pnpm/follow-redirects@1.15.6_debug@4.3.7/node_modules/follow-redirects/index.js"(exports, module) {
|
|
10308
10309
|
var url2 = __require("url");
|
|
10309
10310
|
var URL2 = url2.URL;
|
|
10310
10311
|
var http2 = __require("http");
|