@storm-software/git-tools 2.89.26 → 2.89.30
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/README.md +1 -1
- package/bin/{chunk-FJHQPSYU.js → chunk-F5UAXEVI.js} +25 -25
- package/bin/{chunk-WIDIIDDQ.cjs → chunk-NTA62AN7.cjs} +25 -25
- package/bin/git.cjs +116 -130
- package/bin/git.js +65 -79
- package/bin/post-checkout.cjs +9 -9
- package/bin/post-checkout.js +1 -1
- package/bin/post-commit.cjs +9 -9
- package/bin/post-commit.js +1 -1
- package/bin/post-merge.cjs +9 -9
- package/bin/post-merge.js +1 -1
- package/bin/pre-commit.cjs +9 -9
- package/bin/pre-commit.js +1 -1
- package/bin/pre-install.cjs +9 -9
- package/bin/pre-install.js +1 -1
- package/bin/pre-push.cjs +13 -13
- package/bin/pre-push.js +1 -1
- package/bin/prepare.cjs +7 -7
- package/bin/prepare.js +1 -1
- package/bin/version-warning.cjs +5 -5
- package/bin/version-warning.js +1 -1
- package/dist/lefthook/config.yml +4 -8
- package/dist/lint-staged/config.cjs +43 -43
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
21
21
|
|
|
22
22
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
23
23
|
|
|
24
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
|
@@ -39610,7 +39610,7 @@ var RegistryConfigSchema = z.object({
|
|
|
39610
39610
|
var ColorConfigSchema = SingleThemeColorConfigSchema.or(MultiThemeColorConfigSchema).describe("Colors used for various workspace elements");
|
|
39611
39611
|
var ColorConfigMapSchema = z.union([
|
|
39612
39612
|
z.object({
|
|
39613
|
-
|
|
39613
|
+
base: ColorConfigSchema
|
|
39614
39614
|
}),
|
|
39615
39615
|
z.record(z.string(), ColorConfigSchema)
|
|
39616
39616
|
]);
|
|
@@ -39919,31 +39919,31 @@ __name(findWorkspaceRoot, "findWorkspaceRoot");
|
|
|
39919
39919
|
|
|
39920
39920
|
// ../config-tools/src/utilities/get-default-config.ts
|
|
39921
39921
|
var DEFAULT_COLOR_CONFIG = {
|
|
39922
|
-
|
|
39923
|
-
|
|
39924
|
-
|
|
39925
|
-
|
|
39926
|
-
|
|
39927
|
-
|
|
39928
|
-
|
|
39929
|
-
|
|
39930
|
-
|
|
39931
|
-
|
|
39932
|
-
|
|
39933
|
-
|
|
39922
|
+
light: {
|
|
39923
|
+
background: "#fafafa",
|
|
39924
|
+
foreground: "#1d1e22",
|
|
39925
|
+
brand: "#1fb2a6",
|
|
39926
|
+
alternate: "#db2777",
|
|
39927
|
+
help: "#5C4EE5",
|
|
39928
|
+
success: "#087f5b",
|
|
39929
|
+
info: "#0550ae",
|
|
39930
|
+
warning: "#e3b341",
|
|
39931
|
+
danger: "#D8314A",
|
|
39932
|
+
positive: "#22c55e",
|
|
39933
|
+
negative: "#dc2626"
|
|
39934
39934
|
},
|
|
39935
|
-
|
|
39936
|
-
|
|
39937
|
-
|
|
39938
|
-
|
|
39939
|
-
|
|
39940
|
-
|
|
39941
|
-
|
|
39942
|
-
|
|
39943
|
-
|
|
39944
|
-
|
|
39945
|
-
|
|
39946
|
-
|
|
39935
|
+
dark: {
|
|
39936
|
+
background: "#1d1e22",
|
|
39937
|
+
foreground: "#cbd5e1",
|
|
39938
|
+
brand: "#2dd4bf",
|
|
39939
|
+
alternate: "#db2777",
|
|
39940
|
+
help: "#818cf8",
|
|
39941
|
+
success: "#10b981",
|
|
39942
|
+
info: "#58a6ff",
|
|
39943
|
+
warning: "#f3d371",
|
|
39944
|
+
danger: "#D8314A",
|
|
39945
|
+
positive: "#22c55e",
|
|
39946
|
+
negative: "#dc2626"
|
|
39947
39947
|
}
|
|
39948
39948
|
};
|
|
39949
39949
|
var getDefaultConfig = /* @__PURE__ */ __name(async (root) => {
|
|
@@ -39610,7 +39610,7 @@ var RegistryConfigSchema = z.object({
|
|
|
39610
39610
|
var ColorConfigSchema = SingleThemeColorConfigSchema.or(MultiThemeColorConfigSchema).describe("Colors used for various workspace elements");
|
|
39611
39611
|
var ColorConfigMapSchema = z.union([
|
|
39612
39612
|
z.object({
|
|
39613
|
-
|
|
39613
|
+
base: ColorConfigSchema
|
|
39614
39614
|
}),
|
|
39615
39615
|
z.record(z.string(), ColorConfigSchema)
|
|
39616
39616
|
]);
|
|
@@ -39919,31 +39919,31 @@ _chunkEVP6BIDZcjs.__name.call(void 0, findWorkspaceRoot, "findWorkspaceRoot");
|
|
|
39919
39919
|
|
|
39920
39920
|
// ../config-tools/src/utilities/get-default-config.ts
|
|
39921
39921
|
var DEFAULT_COLOR_CONFIG = {
|
|
39922
|
-
|
|
39923
|
-
|
|
39924
|
-
|
|
39925
|
-
|
|
39926
|
-
|
|
39927
|
-
|
|
39928
|
-
|
|
39929
|
-
|
|
39930
|
-
|
|
39931
|
-
|
|
39932
|
-
|
|
39933
|
-
|
|
39922
|
+
light: {
|
|
39923
|
+
background: "#fafafa",
|
|
39924
|
+
foreground: "#1d1e22",
|
|
39925
|
+
brand: "#1fb2a6",
|
|
39926
|
+
alternate: "#db2777",
|
|
39927
|
+
help: "#5C4EE5",
|
|
39928
|
+
success: "#087f5b",
|
|
39929
|
+
info: "#0550ae",
|
|
39930
|
+
warning: "#e3b341",
|
|
39931
|
+
danger: "#D8314A",
|
|
39932
|
+
positive: "#22c55e",
|
|
39933
|
+
negative: "#dc2626"
|
|
39934
39934
|
},
|
|
39935
|
-
|
|
39936
|
-
|
|
39937
|
-
|
|
39938
|
-
|
|
39939
|
-
|
|
39940
|
-
|
|
39941
|
-
|
|
39942
|
-
|
|
39943
|
-
|
|
39944
|
-
|
|
39945
|
-
|
|
39946
|
-
|
|
39935
|
+
dark: {
|
|
39936
|
+
background: "#1d1e22",
|
|
39937
|
+
foreground: "#cbd5e1",
|
|
39938
|
+
brand: "#2dd4bf",
|
|
39939
|
+
alternate: "#db2777",
|
|
39940
|
+
help: "#818cf8",
|
|
39941
|
+
success: "#10b981",
|
|
39942
|
+
info: "#58a6ff",
|
|
39943
|
+
warning: "#f3d371",
|
|
39944
|
+
danger: "#D8314A",
|
|
39945
|
+
positive: "#22c55e",
|
|
39946
|
+
negative: "#dc2626"
|
|
39947
39947
|
}
|
|
39948
39948
|
};
|
|
39949
39949
|
var getDefaultConfig = /* @__PURE__ */ _chunkEVP6BIDZcjs.__name.call(void 0, async (root) => {
|