@storm-software/git-tools 2.58.3 → 2.59.1
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/README.md +1 -1
- package/bin/git.js +1011 -1882
- package/bin/post-checkout.js +954 -1825
- package/bin/post-commit.js +954 -1825
- package/bin/post-merge.js +954 -1825
- package/bin/pre-commit.js +954 -1825
- package/bin/pre-install.js +954 -1825
- package/bin/pre-push.js +954 -1825
- package/bin/prepare.js +954 -1825
- package/bin/version-warning.js +954 -1825
- package/package.json +3 -3
- package/src/cli/index.js +1005 -1876
- package/src/commit/index.js +22 -30
- package/src/commitizen/index.js +22 -30
- package/src/index.js +1005 -1876
- package/src/release/index.js +22 -30
- /package/commitlint/{commitlint.config.cjs → config.cjs} +0 -0
- /package/lefthook/{lefthook.yml → config.yml} +0 -0
package/src/commit/index.js
CHANGED
|
@@ -37315,8 +37315,7 @@ var z = /* @__PURE__ */ Object.freeze({
|
|
|
37315
37315
|
var DarkColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#0D1017").describe("The dark background color of the workspace");
|
|
37316
37316
|
var LightColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#f4f4f5").describe("The light background color of the workspace");
|
|
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
|
-
var
|
|
37319
|
-
var Brand3ColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#00C2CE").describe("The tertiary brand specific color of the workspace");
|
|
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");
|
|
37320
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");
|
|
37321
37320
|
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");
|
|
37322
37321
|
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");
|
|
@@ -37328,8 +37327,7 @@ var DarkThemeColorConfigSchema = z.object({
|
|
|
37328
37327
|
foreground: LightColorSchema,
|
|
37329
37328
|
background: DarkColorSchema,
|
|
37330
37329
|
brand: BrandColorSchema,
|
|
37331
|
-
|
|
37332
|
-
brand3: Brand3ColorSchema,
|
|
37330
|
+
alternate: AlternateColorSchema,
|
|
37333
37331
|
accent: AccentColorSchema,
|
|
37334
37332
|
help: HelpColorSchema,
|
|
37335
37333
|
success: SuccessColorSchema,
|
|
@@ -37342,8 +37340,7 @@ var LightThemeColorConfigSchema = z.object({
|
|
|
37342
37340
|
foreground: DarkColorSchema,
|
|
37343
37341
|
background: LightColorSchema,
|
|
37344
37342
|
brand: BrandColorSchema,
|
|
37345
|
-
|
|
37346
|
-
brand3: Brand3ColorSchema,
|
|
37343
|
+
alternate: AlternateColorSchema,
|
|
37347
37344
|
accent: AccentColorSchema,
|
|
37348
37345
|
help: HelpColorSchema,
|
|
37349
37346
|
success: SuccessColorSchema,
|
|
@@ -37360,8 +37357,7 @@ var SingleThemeColorConfigSchema = z.object({
|
|
|
37360
37357
|
dark: DarkColorSchema,
|
|
37361
37358
|
light: LightColorSchema,
|
|
37362
37359
|
brand: BrandColorSchema,
|
|
37363
|
-
|
|
37364
|
-
brand3: Brand3ColorSchema,
|
|
37360
|
+
alternate: AlternateColorSchema,
|
|
37365
37361
|
accent: AccentColorSchema,
|
|
37366
37362
|
help: HelpColorSchema,
|
|
37367
37363
|
success: SuccessColorSchema,
|
|
@@ -37451,29 +37447,25 @@ var StormConfigSchema = z.object({
|
|
|
37451
37447
|
|
|
37452
37448
|
// packages/config-tools/src/utilities/get-default-config.ts
|
|
37453
37449
|
var DEFAULT_COLOR_CONFIG = {
|
|
37454
|
-
light: {
|
|
37455
|
-
background: "#
|
|
37456
|
-
foreground: "#
|
|
37457
|
-
brand: "#1fb2a6",
|
|
37458
|
-
|
|
37459
|
-
|
|
37460
|
-
|
|
37461
|
-
|
|
37462
|
-
|
|
37463
|
-
warning: "#e3b341",
|
|
37464
|
-
error: "#a40e26"
|
|
37450
|
+
"light": {
|
|
37451
|
+
"background": "#fafafa",
|
|
37452
|
+
"foreground": "#121212",
|
|
37453
|
+
"brand": "#1fb2a6",
|
|
37454
|
+
"help": "#5C4EE5",
|
|
37455
|
+
"success": "#087f5b",
|
|
37456
|
+
"info": "#0550ae",
|
|
37457
|
+
"warning": "#e3b341",
|
|
37458
|
+
"error": "#a40e26"
|
|
37465
37459
|
},
|
|
37466
|
-
dark: {
|
|
37467
|
-
background: "#
|
|
37468
|
-
foreground: "#
|
|
37469
|
-
brand: "#
|
|
37470
|
-
|
|
37471
|
-
|
|
37472
|
-
|
|
37473
|
-
|
|
37474
|
-
|
|
37475
|
-
warning: "#F3D371",
|
|
37476
|
-
error: "#d1242f"
|
|
37460
|
+
"dark": {
|
|
37461
|
+
"background": "#22272e",
|
|
37462
|
+
"foreground": "#f0f0f0",
|
|
37463
|
+
"brand": "#3fc1b0",
|
|
37464
|
+
"help": "#5C4EE5",
|
|
37465
|
+
"success": "#10b981",
|
|
37466
|
+
"info": "#58a6ff",
|
|
37467
|
+
"warning": "#f3d371",
|
|
37468
|
+
"error": "#d1242f"
|
|
37477
37469
|
}
|
|
37478
37470
|
};
|
|
37479
37471
|
var DEFAULT_STORM_CONFIG = {
|
package/src/commitizen/index.js
CHANGED
|
@@ -37262,8 +37262,7 @@ var z = /* @__PURE__ */ Object.freeze({
|
|
|
37262
37262
|
var DarkColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#0D1017").describe("The dark background color of the workspace");
|
|
37263
37263
|
var LightColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#f4f4f5").describe("The light background color of the workspace");
|
|
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
|
-
var
|
|
37266
|
-
var Brand3ColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#00C2CE").describe("The tertiary brand specific color of the workspace");
|
|
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");
|
|
37267
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");
|
|
37268
37267
|
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");
|
|
37269
37268
|
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");
|
|
@@ -37275,8 +37274,7 @@ var DarkThemeColorConfigSchema = z.object({
|
|
|
37275
37274
|
foreground: LightColorSchema,
|
|
37276
37275
|
background: DarkColorSchema,
|
|
37277
37276
|
brand: BrandColorSchema,
|
|
37278
|
-
|
|
37279
|
-
brand3: Brand3ColorSchema,
|
|
37277
|
+
alternate: AlternateColorSchema,
|
|
37280
37278
|
accent: AccentColorSchema,
|
|
37281
37279
|
help: HelpColorSchema,
|
|
37282
37280
|
success: SuccessColorSchema,
|
|
@@ -37289,8 +37287,7 @@ var LightThemeColorConfigSchema = z.object({
|
|
|
37289
37287
|
foreground: DarkColorSchema,
|
|
37290
37288
|
background: LightColorSchema,
|
|
37291
37289
|
brand: BrandColorSchema,
|
|
37292
|
-
|
|
37293
|
-
brand3: Brand3ColorSchema,
|
|
37290
|
+
alternate: AlternateColorSchema,
|
|
37294
37291
|
accent: AccentColorSchema,
|
|
37295
37292
|
help: HelpColorSchema,
|
|
37296
37293
|
success: SuccessColorSchema,
|
|
@@ -37307,8 +37304,7 @@ var SingleThemeColorConfigSchema = z.object({
|
|
|
37307
37304
|
dark: DarkColorSchema,
|
|
37308
37305
|
light: LightColorSchema,
|
|
37309
37306
|
brand: BrandColorSchema,
|
|
37310
|
-
|
|
37311
|
-
brand3: Brand3ColorSchema,
|
|
37307
|
+
alternate: AlternateColorSchema,
|
|
37312
37308
|
accent: AccentColorSchema,
|
|
37313
37309
|
help: HelpColorSchema,
|
|
37314
37310
|
success: SuccessColorSchema,
|
|
@@ -37398,29 +37394,25 @@ var StormConfigSchema = z.object({
|
|
|
37398
37394
|
|
|
37399
37395
|
// packages/config-tools/src/utilities/get-default-config.ts
|
|
37400
37396
|
var DEFAULT_COLOR_CONFIG = {
|
|
37401
|
-
light: {
|
|
37402
|
-
background: "#
|
|
37403
|
-
foreground: "#
|
|
37404
|
-
brand: "#1fb2a6",
|
|
37405
|
-
|
|
37406
|
-
|
|
37407
|
-
|
|
37408
|
-
|
|
37409
|
-
|
|
37410
|
-
warning: "#e3b341",
|
|
37411
|
-
error: "#a40e26"
|
|
37397
|
+
"light": {
|
|
37398
|
+
"background": "#fafafa",
|
|
37399
|
+
"foreground": "#121212",
|
|
37400
|
+
"brand": "#1fb2a6",
|
|
37401
|
+
"help": "#5C4EE5",
|
|
37402
|
+
"success": "#087f5b",
|
|
37403
|
+
"info": "#0550ae",
|
|
37404
|
+
"warning": "#e3b341",
|
|
37405
|
+
"error": "#a40e26"
|
|
37412
37406
|
},
|
|
37413
|
-
dark: {
|
|
37414
|
-
background: "#
|
|
37415
|
-
foreground: "#
|
|
37416
|
-
brand: "#
|
|
37417
|
-
|
|
37418
|
-
|
|
37419
|
-
|
|
37420
|
-
|
|
37421
|
-
|
|
37422
|
-
warning: "#F3D371",
|
|
37423
|
-
error: "#d1242f"
|
|
37407
|
+
"dark": {
|
|
37408
|
+
"background": "#22272e",
|
|
37409
|
+
"foreground": "#f0f0f0",
|
|
37410
|
+
"brand": "#3fc1b0",
|
|
37411
|
+
"help": "#5C4EE5",
|
|
37412
|
+
"success": "#10b981",
|
|
37413
|
+
"info": "#58a6ff",
|
|
37414
|
+
"warning": "#f3d371",
|
|
37415
|
+
"error": "#d1242f"
|
|
37424
37416
|
}
|
|
37425
37417
|
};
|
|
37426
37418
|
var DEFAULT_STORM_CONFIG = {
|