@storm-software/git-tools 2.63.5 → 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 +11 -0
- package/README.md +1 -1
- package/bin/git.js +38 -12
- package/bin/post-checkout.js +38 -12
- package/bin/post-commit.js +38 -12
- package/bin/post-merge.js +38 -12
- package/bin/pre-commit.js +38 -12
- package/bin/pre-install.js +38 -12
- package/bin/pre-push.js +38 -12
- package/bin/prepare.js +38 -12
- package/bin/version-warning.js +38 -12
- package/package.json +1 -1
- package/src/cli/index.js +38 -12
- package/src/commit/index.js +18 -8
- package/src/commitizen/index.js +18 -8
- package/src/index.js +38 -12
- package/src/release/index.js +18 -8
package/src/release/index.js
CHANGED
|
@@ -5721,13 +5721,15 @@ var LightColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,
|
|
|
5721
5721
|
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");
|
|
5722
5722
|
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");
|
|
5723
5723
|
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");
|
|
5724
|
-
var LinkColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).
|
|
5724
|
+
var LinkColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).optional().describe("The color used to display ");
|
|
5725
5725
|
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");
|
|
5726
5726
|
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");
|
|
5727
5727
|
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");
|
|
5728
5728
|
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");
|
|
5729
5729
|
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");
|
|
5730
5730
|
var FatalColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).optional().describe("The fatal color of the workspace");
|
|
5731
|
+
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");
|
|
5732
|
+
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");
|
|
5731
5733
|
var DarkThemeColorConfigSchema = z.object({
|
|
5732
5734
|
foreground: LightColorSchema,
|
|
5733
5735
|
background: DarkColorSchema,
|
|
@@ -5740,7 +5742,9 @@ var DarkThemeColorConfigSchema = z.object({
|
|
|
5740
5742
|
info: InfoColorSchema,
|
|
5741
5743
|
warning: WarningColorSchema,
|
|
5742
5744
|
error: ErrorColorSchema,
|
|
5743
|
-
fatal: FatalColorSchema
|
|
5745
|
+
fatal: FatalColorSchema,
|
|
5746
|
+
positive: PositiveColorSchema,
|
|
5747
|
+
negative: NegativeColorSchema
|
|
5744
5748
|
});
|
|
5745
5749
|
var LightThemeColorConfigSchema = z.object({
|
|
5746
5750
|
foreground: DarkColorSchema,
|
|
@@ -5754,7 +5758,9 @@ var LightThemeColorConfigSchema = z.object({
|
|
|
5754
5758
|
info: InfoColorSchema,
|
|
5755
5759
|
warning: WarningColorSchema,
|
|
5756
5760
|
error: ErrorColorSchema,
|
|
5757
|
-
fatal: FatalColorSchema
|
|
5761
|
+
fatal: FatalColorSchema,
|
|
5762
|
+
positive: PositiveColorSchema,
|
|
5763
|
+
negative: NegativeColorSchema
|
|
5758
5764
|
});
|
|
5759
5765
|
var MultiThemeColorConfigSchema = z.object({
|
|
5760
5766
|
dark: DarkThemeColorConfigSchema,
|
|
@@ -5772,7 +5778,9 @@ var SingleThemeColorConfigSchema = z.object({
|
|
|
5772
5778
|
info: InfoColorSchema,
|
|
5773
5779
|
warning: WarningColorSchema,
|
|
5774
5780
|
error: ErrorColorSchema,
|
|
5775
|
-
fatal: FatalColorSchema
|
|
5781
|
+
fatal: FatalColorSchema,
|
|
5782
|
+
positive: PositiveColorSchema,
|
|
5783
|
+
negative: NegativeColorSchema
|
|
5776
5784
|
});
|
|
5777
5785
|
var RegistryUrlConfigSchema = z.string().trim().toLowerCase().url().optional().describe("A remote registry URL used to publish distributable packages");
|
|
5778
5786
|
var RegistryConfigSchema = z.object({
|
|
@@ -5860,24 +5868,26 @@ var DEFAULT_COLOR_CONFIG = {
|
|
|
5860
5868
|
"foreground": "#1d1e22",
|
|
5861
5869
|
"brand": "#1fb2a6",
|
|
5862
5870
|
"alternate": "#db2777",
|
|
5863
|
-
"link": "#01B4F5",
|
|
5864
5871
|
"help": "#5C4EE5",
|
|
5865
5872
|
"success": "#087f5b",
|
|
5866
5873
|
"info": "#0550ae",
|
|
5867
5874
|
"warning": "#e3b341",
|
|
5868
|
-
"error": "#a40e26"
|
|
5875
|
+
"error": "#a40e26",
|
|
5876
|
+
"positive": "#22c55e",
|
|
5877
|
+
"negative": "#dc2626"
|
|
5869
5878
|
},
|
|
5870
5879
|
"dark": {
|
|
5871
5880
|
"background": "#1d1e22",
|
|
5872
5881
|
"foreground": "#cbd5e1",
|
|
5873
5882
|
"brand": "#2dd4bf",
|
|
5874
5883
|
"alternate": "#db2777",
|
|
5875
|
-
"link": "#01B4F5",
|
|
5876
5884
|
"help": "#818cf8",
|
|
5877
5885
|
"success": "#10b981",
|
|
5878
5886
|
"info": "#58a6ff",
|
|
5879
5887
|
"warning": "#f3d371",
|
|
5880
|
-
"error": "#d1242f"
|
|
5888
|
+
"error": "#d1242f",
|
|
5889
|
+
"positive": "#22c55e",
|
|
5890
|
+
"negative": "#dc2626"
|
|
5881
5891
|
}
|
|
5882
5892
|
};
|
|
5883
5893
|
var DEFAULT_STORM_CONFIG = {
|