@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/release/index.js
CHANGED
|
@@ -5719,8 +5719,7 @@ var z = /* @__PURE__ */ Object.freeze({
|
|
|
5719
5719
|
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");
|
|
5720
5720
|
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");
|
|
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
|
-
var
|
|
5723
|
-
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");
|
|
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");
|
|
5724
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");
|
|
5725
5724
|
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
5725
|
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");
|
|
@@ -5732,8 +5731,7 @@ var DarkThemeColorConfigSchema = z.object({
|
|
|
5732
5731
|
foreground: LightColorSchema,
|
|
5733
5732
|
background: DarkColorSchema,
|
|
5734
5733
|
brand: BrandColorSchema,
|
|
5735
|
-
|
|
5736
|
-
brand3: Brand3ColorSchema,
|
|
5734
|
+
alternate: AlternateColorSchema,
|
|
5737
5735
|
accent: AccentColorSchema,
|
|
5738
5736
|
help: HelpColorSchema,
|
|
5739
5737
|
success: SuccessColorSchema,
|
|
@@ -5746,8 +5744,7 @@ var LightThemeColorConfigSchema = z.object({
|
|
|
5746
5744
|
foreground: DarkColorSchema,
|
|
5747
5745
|
background: LightColorSchema,
|
|
5748
5746
|
brand: BrandColorSchema,
|
|
5749
|
-
|
|
5750
|
-
brand3: Brand3ColorSchema,
|
|
5747
|
+
alternate: AlternateColorSchema,
|
|
5751
5748
|
accent: AccentColorSchema,
|
|
5752
5749
|
help: HelpColorSchema,
|
|
5753
5750
|
success: SuccessColorSchema,
|
|
@@ -5764,8 +5761,7 @@ var SingleThemeColorConfigSchema = z.object({
|
|
|
5764
5761
|
dark: DarkColorSchema,
|
|
5765
5762
|
light: LightColorSchema,
|
|
5766
5763
|
brand: BrandColorSchema,
|
|
5767
|
-
|
|
5768
|
-
brand3: Brand3ColorSchema,
|
|
5764
|
+
alternate: AlternateColorSchema,
|
|
5769
5765
|
accent: AccentColorSchema,
|
|
5770
5766
|
help: HelpColorSchema,
|
|
5771
5767
|
success: SuccessColorSchema,
|
|
@@ -5855,29 +5851,25 @@ var StormConfigSchema = z.object({
|
|
|
5855
5851
|
|
|
5856
5852
|
// packages/config-tools/src/utilities/get-default-config.ts
|
|
5857
5853
|
var DEFAULT_COLOR_CONFIG = {
|
|
5858
|
-
light: {
|
|
5859
|
-
background: "#
|
|
5860
|
-
foreground: "#
|
|
5861
|
-
brand: "#1fb2a6",
|
|
5862
|
-
|
|
5863
|
-
|
|
5864
|
-
|
|
5865
|
-
|
|
5866
|
-
|
|
5867
|
-
warning: "#e3b341",
|
|
5868
|
-
error: "#a40e26"
|
|
5854
|
+
"light": {
|
|
5855
|
+
"background": "#fafafa",
|
|
5856
|
+
"foreground": "#121212",
|
|
5857
|
+
"brand": "#1fb2a6",
|
|
5858
|
+
"help": "#5C4EE5",
|
|
5859
|
+
"success": "#087f5b",
|
|
5860
|
+
"info": "#0550ae",
|
|
5861
|
+
"warning": "#e3b341",
|
|
5862
|
+
"error": "#a40e26"
|
|
5869
5863
|
},
|
|
5870
|
-
dark: {
|
|
5871
|
-
background: "#
|
|
5872
|
-
foreground: "#
|
|
5873
|
-
brand: "#
|
|
5874
|
-
|
|
5875
|
-
|
|
5876
|
-
|
|
5877
|
-
|
|
5878
|
-
|
|
5879
|
-
warning: "#F3D371",
|
|
5880
|
-
error: "#d1242f"
|
|
5864
|
+
"dark": {
|
|
5865
|
+
"background": "#22272e",
|
|
5866
|
+
"foreground": "#f0f0f0",
|
|
5867
|
+
"brand": "#3fc1b0",
|
|
5868
|
+
"help": "#5C4EE5",
|
|
5869
|
+
"success": "#10b981",
|
|
5870
|
+
"info": "#58a6ff",
|
|
5871
|
+
"warning": "#f3d371",
|
|
5872
|
+
"error": "#d1242f"
|
|
5881
5873
|
}
|
|
5882
5874
|
};
|
|
5883
5875
|
var DEFAULT_STORM_CONFIG = {
|
|
File without changes
|
|
File without changes
|