@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/bin/version-warning.js
CHANGED
|
@@ -66218,13 +66218,15 @@ var LightColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1
|
|
|
66218
66218
|
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");
|
|
66219
66219
|
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");
|
|
66220
66220
|
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");
|
|
66221
|
-
var LinkColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).
|
|
66221
|
+
var LinkColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).optional().describe("The color used to display ");
|
|
66222
66222
|
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");
|
|
66223
66223
|
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");
|
|
66224
66224
|
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");
|
|
66225
66225
|
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");
|
|
66226
66226
|
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");
|
|
66227
66227
|
var FatalColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).optional().describe("The fatal color of the workspace");
|
|
66228
|
+
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");
|
|
66229
|
+
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");
|
|
66228
66230
|
var DarkThemeColorConfigSchema = z2.object({
|
|
66229
66231
|
foreground: LightColorSchema,
|
|
66230
66232
|
background: DarkColorSchema,
|
|
@@ -66237,7 +66239,9 @@ var DarkThemeColorConfigSchema = z2.object({
|
|
|
66237
66239
|
info: InfoColorSchema,
|
|
66238
66240
|
warning: WarningColorSchema,
|
|
66239
66241
|
error: ErrorColorSchema,
|
|
66240
|
-
fatal: FatalColorSchema
|
|
66242
|
+
fatal: FatalColorSchema,
|
|
66243
|
+
positive: PositiveColorSchema,
|
|
66244
|
+
negative: NegativeColorSchema
|
|
66241
66245
|
});
|
|
66242
66246
|
var LightThemeColorConfigSchema = z2.object({
|
|
66243
66247
|
foreground: DarkColorSchema,
|
|
@@ -66251,7 +66255,9 @@ var LightThemeColorConfigSchema = z2.object({
|
|
|
66251
66255
|
info: InfoColorSchema,
|
|
66252
66256
|
warning: WarningColorSchema,
|
|
66253
66257
|
error: ErrorColorSchema,
|
|
66254
|
-
fatal: FatalColorSchema
|
|
66258
|
+
fatal: FatalColorSchema,
|
|
66259
|
+
positive: PositiveColorSchema,
|
|
66260
|
+
negative: NegativeColorSchema
|
|
66255
66261
|
});
|
|
66256
66262
|
var MultiThemeColorConfigSchema = z2.object({
|
|
66257
66263
|
dark: DarkThemeColorConfigSchema,
|
|
@@ -66269,7 +66275,9 @@ var SingleThemeColorConfigSchema = z2.object({
|
|
|
66269
66275
|
info: InfoColorSchema,
|
|
66270
66276
|
warning: WarningColorSchema,
|
|
66271
66277
|
error: ErrorColorSchema,
|
|
66272
|
-
fatal: FatalColorSchema
|
|
66278
|
+
fatal: FatalColorSchema,
|
|
66279
|
+
positive: PositiveColorSchema,
|
|
66280
|
+
negative: NegativeColorSchema
|
|
66273
66281
|
});
|
|
66274
66282
|
var RegistryUrlConfigSchema = z2.string().trim().toLowerCase().url().optional().describe("A remote registry URL used to publish distributable packages");
|
|
66275
66283
|
var RegistryConfigSchema = z2.object({
|
|
@@ -66373,24 +66381,26 @@ var DEFAULT_COLOR_CONFIG = {
|
|
|
66373
66381
|
"foreground": "#1d1e22",
|
|
66374
66382
|
"brand": "#1fb2a6",
|
|
66375
66383
|
"alternate": "#db2777",
|
|
66376
|
-
"link": "#01B4F5",
|
|
66377
66384
|
"help": "#5C4EE5",
|
|
66378
66385
|
"success": "#087f5b",
|
|
66379
66386
|
"info": "#0550ae",
|
|
66380
66387
|
"warning": "#e3b341",
|
|
66381
|
-
"error": "#a40e26"
|
|
66388
|
+
"error": "#a40e26",
|
|
66389
|
+
"positive": "#22c55e",
|
|
66390
|
+
"negative": "#dc2626"
|
|
66382
66391
|
},
|
|
66383
66392
|
"dark": {
|
|
66384
66393
|
"background": "#1d1e22",
|
|
66385
66394
|
"foreground": "#cbd5e1",
|
|
66386
66395
|
"brand": "#2dd4bf",
|
|
66387
66396
|
"alternate": "#db2777",
|
|
66388
|
-
"link": "#01B4F5",
|
|
66389
66397
|
"help": "#818cf8",
|
|
66390
66398
|
"success": "#10b981",
|
|
66391
66399
|
"info": "#58a6ff",
|
|
66392
66400
|
"warning": "#f3d371",
|
|
66393
|
-
"error": "#d1242f"
|
|
66401
|
+
"error": "#d1242f",
|
|
66402
|
+
"positive": "#22c55e",
|
|
66403
|
+
"negative": "#dc2626"
|
|
66394
66404
|
}
|
|
66395
66405
|
};
|
|
66396
66406
|
var DEFAULT_STORM_CONFIG = {
|
|
@@ -66454,7 +66464,7 @@ var getDefaultConfig = (config = {}, root) => {
|
|
|
66454
66464
|
}
|
|
66455
66465
|
return ret;
|
|
66456
66466
|
}, {}),
|
|
66457
|
-
colors: { ...
|
|
66467
|
+
colors: config.colors ? { ...config.colors } : { ...DEFAULT_COLOR_CONFIG },
|
|
66458
66468
|
workspaceRoot,
|
|
66459
66469
|
name,
|
|
66460
66470
|
namespace,
|
|
@@ -66462,7 +66472,7 @@ var getDefaultConfig = (config = {}, root) => {
|
|
|
66462
66472
|
license: license ?? DEFAULT_STORM_CONFIG.license,
|
|
66463
66473
|
homepage: homepage ?? DEFAULT_STORM_CONFIG.homepage,
|
|
66464
66474
|
docs: `${homepage ?? DEFAULT_STORM_CONFIG.homepage}/docs`,
|
|
66465
|
-
licensing: `${homepage ?? DEFAULT_STORM_CONFIG.homepage}/
|
|
66475
|
+
licensing: `${homepage ?? DEFAULT_STORM_CONFIG.homepage}/license`,
|
|
66466
66476
|
extensions: {
|
|
66467
66477
|
...config.extensions
|
|
66468
66478
|
}
|
|
@@ -66879,7 +66889,9 @@ var getSingleThemeColorConfigEnv = (prefix) => {
|
|
|
66879
66889
|
info: process.env[`${prefix}INFO`],
|
|
66880
66890
|
warning: process.env[`${prefix}WARNING`],
|
|
66881
66891
|
error: process.env[`${prefix}ERROR`],
|
|
66882
|
-
fatal: process.env[`${prefix}FATAL`]
|
|
66892
|
+
fatal: process.env[`${prefix}FATAL`],
|
|
66893
|
+
positive: process.env[`${prefix}POSITIVE`],
|
|
66894
|
+
negative: process.env[`${prefix}NEGATIVE`]
|
|
66883
66895
|
};
|
|
66884
66896
|
};
|
|
66885
66897
|
var getMultiThemeColorConfigEnv = (prefix) => {
|
|
@@ -66903,7 +66915,9 @@ var getBaseThemeColorConfigEnv = (prefix) => {
|
|
|
66903
66915
|
info: process.env[`${prefix}INFO`],
|
|
66904
66916
|
warning: process.env[`${prefix}WARNING`],
|
|
66905
66917
|
error: process.env[`${prefix}ERROR`],
|
|
66906
|
-
fatal: process.env[`${prefix}FATAL`]
|
|
66918
|
+
fatal: process.env[`${prefix}FATAL`],
|
|
66919
|
+
positive: process.env[`${prefix}POSITIVE`],
|
|
66920
|
+
negative: process.env[`${prefix}NEGATIVE`]
|
|
66907
66921
|
};
|
|
66908
66922
|
};
|
|
66909
66923
|
|
|
@@ -67126,6 +67140,12 @@ var setSingleThemeColorConfigEnv = (prefix, config) => {
|
|
|
67126
67140
|
if (config.fatal) {
|
|
67127
67141
|
process.env[`${prefix}FATAL`] = config.fatal;
|
|
67128
67142
|
}
|
|
67143
|
+
if (config.positive) {
|
|
67144
|
+
process.env[`${prefix}POSITIVE`] = config.positive;
|
|
67145
|
+
}
|
|
67146
|
+
if (config.negative) {
|
|
67147
|
+
process.env[`${prefix}NEGATIVE`] = config.negative;
|
|
67148
|
+
}
|
|
67129
67149
|
};
|
|
67130
67150
|
var setMultiThemeColorConfigEnv = (prefix, config) => {
|
|
67131
67151
|
return {
|
|
@@ -67170,6 +67190,12 @@ var setBaseThemeColorConfigEnv = (prefix, config) => {
|
|
|
67170
67190
|
if (config.fatal) {
|
|
67171
67191
|
process.env[`${prefix}FATAL`] = config.fatal;
|
|
67172
67192
|
}
|
|
67193
|
+
if (config.positive) {
|
|
67194
|
+
process.env[`${prefix}POSITIVE`] = config.positive;
|
|
67195
|
+
}
|
|
67196
|
+
if (config.negative) {
|
|
67197
|
+
process.env[`${prefix}NEGATIVE`] = config.negative;
|
|
67198
|
+
}
|
|
67173
67199
|
};
|
|
67174
67200
|
|
|
67175
67201
|
// packages/config-tools/src/create-storm-config.ts
|
package/package.json
CHANGED
package/src/cli/index.js
CHANGED
|
@@ -225740,13 +225740,15 @@ 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).
|
|
225743
|
+
var LinkColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).optional().describe("The color used to display ");
|
|
225744
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");
|
|
225745
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");
|
|
225746
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");
|
|
225747
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");
|
|
225748
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");
|
|
225749
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");
|
|
225750
225752
|
var DarkThemeColorConfigSchema = z2.object({
|
|
225751
225753
|
foreground: LightColorSchema,
|
|
225752
225754
|
background: DarkColorSchema,
|
|
@@ -225759,7 +225761,9 @@ var DarkThemeColorConfigSchema = z2.object({
|
|
|
225759
225761
|
info: InfoColorSchema,
|
|
225760
225762
|
warning: WarningColorSchema,
|
|
225761
225763
|
error: ErrorColorSchema,
|
|
225762
|
-
fatal: FatalColorSchema
|
|
225764
|
+
fatal: FatalColorSchema,
|
|
225765
|
+
positive: PositiveColorSchema,
|
|
225766
|
+
negative: NegativeColorSchema
|
|
225763
225767
|
});
|
|
225764
225768
|
var LightThemeColorConfigSchema = z2.object({
|
|
225765
225769
|
foreground: DarkColorSchema,
|
|
@@ -225773,7 +225777,9 @@ var LightThemeColorConfigSchema = z2.object({
|
|
|
225773
225777
|
info: InfoColorSchema,
|
|
225774
225778
|
warning: WarningColorSchema,
|
|
225775
225779
|
error: ErrorColorSchema,
|
|
225776
|
-
fatal: FatalColorSchema
|
|
225780
|
+
fatal: FatalColorSchema,
|
|
225781
|
+
positive: PositiveColorSchema,
|
|
225782
|
+
negative: NegativeColorSchema
|
|
225777
225783
|
});
|
|
225778
225784
|
var MultiThemeColorConfigSchema = z2.object({
|
|
225779
225785
|
dark: DarkThemeColorConfigSchema,
|
|
@@ -225791,7 +225797,9 @@ var SingleThemeColorConfigSchema = z2.object({
|
|
|
225791
225797
|
info: InfoColorSchema,
|
|
225792
225798
|
warning: WarningColorSchema,
|
|
225793
225799
|
error: ErrorColorSchema,
|
|
225794
|
-
fatal: FatalColorSchema
|
|
225800
|
+
fatal: FatalColorSchema,
|
|
225801
|
+
positive: PositiveColorSchema,
|
|
225802
|
+
negative: NegativeColorSchema
|
|
225795
225803
|
});
|
|
225796
225804
|
var RegistryUrlConfigSchema = z2.string().trim().toLowerCase().url().optional().describe("A remote registry URL used to publish distributable packages");
|
|
225797
225805
|
var RegistryConfigSchema = z2.object({
|
|
@@ -225895,24 +225903,26 @@ var DEFAULT_COLOR_CONFIG = {
|
|
|
225895
225903
|
"foreground": "#1d1e22",
|
|
225896
225904
|
"brand": "#1fb2a6",
|
|
225897
225905
|
"alternate": "#db2777",
|
|
225898
|
-
"link": "#01B4F5",
|
|
225899
225906
|
"help": "#5C4EE5",
|
|
225900
225907
|
"success": "#087f5b",
|
|
225901
225908
|
"info": "#0550ae",
|
|
225902
225909
|
"warning": "#e3b341",
|
|
225903
|
-
"error": "#a40e26"
|
|
225910
|
+
"error": "#a40e26",
|
|
225911
|
+
"positive": "#22c55e",
|
|
225912
|
+
"negative": "#dc2626"
|
|
225904
225913
|
},
|
|
225905
225914
|
"dark": {
|
|
225906
225915
|
"background": "#1d1e22",
|
|
225907
225916
|
"foreground": "#cbd5e1",
|
|
225908
225917
|
"brand": "#2dd4bf",
|
|
225909
225918
|
"alternate": "#db2777",
|
|
225910
|
-
"link": "#01B4F5",
|
|
225911
225919
|
"help": "#818cf8",
|
|
225912
225920
|
"success": "#10b981",
|
|
225913
225921
|
"info": "#58a6ff",
|
|
225914
225922
|
"warning": "#f3d371",
|
|
225915
|
-
"error": "#d1242f"
|
|
225923
|
+
"error": "#d1242f",
|
|
225924
|
+
"positive": "#22c55e",
|
|
225925
|
+
"negative": "#dc2626"
|
|
225916
225926
|
}
|
|
225917
225927
|
};
|
|
225918
225928
|
var DEFAULT_STORM_CONFIG = {
|
|
@@ -225976,7 +225986,7 @@ var getDefaultConfig = (config2 = {}, root3) => {
|
|
|
225976
225986
|
}
|
|
225977
225987
|
return ret;
|
|
225978
225988
|
}, {}),
|
|
225979
|
-
colors: { ...
|
|
225989
|
+
colors: config2.colors ? { ...config2.colors } : { ...DEFAULT_COLOR_CONFIG },
|
|
225980
225990
|
workspaceRoot: workspaceRoot3,
|
|
225981
225991
|
name,
|
|
225982
225992
|
namespace,
|
|
@@ -225984,7 +225994,7 @@ var getDefaultConfig = (config2 = {}, root3) => {
|
|
|
225984
225994
|
license: license ?? DEFAULT_STORM_CONFIG.license,
|
|
225985
225995
|
homepage: homepage ?? DEFAULT_STORM_CONFIG.homepage,
|
|
225986
225996
|
docs: `${homepage ?? DEFAULT_STORM_CONFIG.homepage}/docs`,
|
|
225987
|
-
licensing: `${homepage ?? DEFAULT_STORM_CONFIG.homepage}/
|
|
225997
|
+
licensing: `${homepage ?? DEFAULT_STORM_CONFIG.homepage}/license`,
|
|
225988
225998
|
extensions: {
|
|
225989
225999
|
...config2.extensions
|
|
225990
226000
|
}
|
|
@@ -226364,7 +226374,9 @@ var getSingleThemeColorConfigEnv = (prefix) => {
|
|
|
226364
226374
|
info: process.env[`${prefix}INFO`],
|
|
226365
226375
|
warning: process.env[`${prefix}WARNING`],
|
|
226366
226376
|
error: process.env[`${prefix}ERROR`],
|
|
226367
|
-
fatal: process.env[`${prefix}FATAL`]
|
|
226377
|
+
fatal: process.env[`${prefix}FATAL`],
|
|
226378
|
+
positive: process.env[`${prefix}POSITIVE`],
|
|
226379
|
+
negative: process.env[`${prefix}NEGATIVE`]
|
|
226368
226380
|
};
|
|
226369
226381
|
};
|
|
226370
226382
|
var getMultiThemeColorConfigEnv = (prefix) => {
|
|
@@ -226388,7 +226400,9 @@ var getBaseThemeColorConfigEnv = (prefix) => {
|
|
|
226388
226400
|
info: process.env[`${prefix}INFO`],
|
|
226389
226401
|
warning: process.env[`${prefix}WARNING`],
|
|
226390
226402
|
error: process.env[`${prefix}ERROR`],
|
|
226391
|
-
fatal: process.env[`${prefix}FATAL`]
|
|
226403
|
+
fatal: process.env[`${prefix}FATAL`],
|
|
226404
|
+
positive: process.env[`${prefix}POSITIVE`],
|
|
226405
|
+
negative: process.env[`${prefix}NEGATIVE`]
|
|
226392
226406
|
};
|
|
226393
226407
|
};
|
|
226394
226408
|
|
|
@@ -226611,6 +226625,12 @@ var setSingleThemeColorConfigEnv = (prefix, config2) => {
|
|
|
226611
226625
|
if (config2.fatal) {
|
|
226612
226626
|
process.env[`${prefix}FATAL`] = config2.fatal;
|
|
226613
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
|
+
}
|
|
226614
226634
|
};
|
|
226615
226635
|
var setMultiThemeColorConfigEnv = (prefix, config2) => {
|
|
226616
226636
|
return {
|
|
@@ -226655,6 +226675,12 @@ var setBaseThemeColorConfigEnv = (prefix, config2) => {
|
|
|
226655
226675
|
if (config2.fatal) {
|
|
226656
226676
|
process.env[`${prefix}FATAL`] = config2.fatal;
|
|
226657
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
|
+
}
|
|
226658
226684
|
};
|
|
226659
226685
|
|
|
226660
226686
|
// packages/config-tools/src/create-storm-config.ts
|
package/src/commit/index.js
CHANGED
|
@@ -37317,13 +37317,15 @@ 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).
|
|
37320
|
+
var LinkColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).optional().describe("The color used to display ");
|
|
37321
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");
|
|
37322
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");
|
|
37323
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");
|
|
37324
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");
|
|
37325
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");
|
|
37326
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");
|
|
37327
37329
|
var DarkThemeColorConfigSchema = z.object({
|
|
37328
37330
|
foreground: LightColorSchema,
|
|
37329
37331
|
background: DarkColorSchema,
|
|
@@ -37336,7 +37338,9 @@ var DarkThemeColorConfigSchema = z.object({
|
|
|
37336
37338
|
info: InfoColorSchema,
|
|
37337
37339
|
warning: WarningColorSchema,
|
|
37338
37340
|
error: ErrorColorSchema,
|
|
37339
|
-
fatal: FatalColorSchema
|
|
37341
|
+
fatal: FatalColorSchema,
|
|
37342
|
+
positive: PositiveColorSchema,
|
|
37343
|
+
negative: NegativeColorSchema
|
|
37340
37344
|
});
|
|
37341
37345
|
var LightThemeColorConfigSchema = z.object({
|
|
37342
37346
|
foreground: DarkColorSchema,
|
|
@@ -37350,7 +37354,9 @@ var LightThemeColorConfigSchema = z.object({
|
|
|
37350
37354
|
info: InfoColorSchema,
|
|
37351
37355
|
warning: WarningColorSchema,
|
|
37352
37356
|
error: ErrorColorSchema,
|
|
37353
|
-
fatal: FatalColorSchema
|
|
37357
|
+
fatal: FatalColorSchema,
|
|
37358
|
+
positive: PositiveColorSchema,
|
|
37359
|
+
negative: NegativeColorSchema
|
|
37354
37360
|
});
|
|
37355
37361
|
var MultiThemeColorConfigSchema = z.object({
|
|
37356
37362
|
dark: DarkThemeColorConfigSchema,
|
|
@@ -37368,7 +37374,9 @@ var SingleThemeColorConfigSchema = z.object({
|
|
|
37368
37374
|
info: InfoColorSchema,
|
|
37369
37375
|
warning: WarningColorSchema,
|
|
37370
37376
|
error: ErrorColorSchema,
|
|
37371
|
-
fatal: FatalColorSchema
|
|
37377
|
+
fatal: FatalColorSchema,
|
|
37378
|
+
positive: PositiveColorSchema,
|
|
37379
|
+
negative: NegativeColorSchema
|
|
37372
37380
|
});
|
|
37373
37381
|
var RegistryUrlConfigSchema = z.string().trim().toLowerCase().url().optional().describe("A remote registry URL used to publish distributable packages");
|
|
37374
37382
|
var RegistryConfigSchema = z.object({
|
|
@@ -37456,24 +37464,26 @@ var DEFAULT_COLOR_CONFIG = {
|
|
|
37456
37464
|
"foreground": "#1d1e22",
|
|
37457
37465
|
"brand": "#1fb2a6",
|
|
37458
37466
|
"alternate": "#db2777",
|
|
37459
|
-
"link": "#01B4F5",
|
|
37460
37467
|
"help": "#5C4EE5",
|
|
37461
37468
|
"success": "#087f5b",
|
|
37462
37469
|
"info": "#0550ae",
|
|
37463
37470
|
"warning": "#e3b341",
|
|
37464
|
-
"error": "#a40e26"
|
|
37471
|
+
"error": "#a40e26",
|
|
37472
|
+
"positive": "#22c55e",
|
|
37473
|
+
"negative": "#dc2626"
|
|
37465
37474
|
},
|
|
37466
37475
|
"dark": {
|
|
37467
37476
|
"background": "#1d1e22",
|
|
37468
37477
|
"foreground": "#cbd5e1",
|
|
37469
37478
|
"brand": "#2dd4bf",
|
|
37470
37479
|
"alternate": "#db2777",
|
|
37471
|
-
"link": "#01B4F5",
|
|
37472
37480
|
"help": "#818cf8",
|
|
37473
37481
|
"success": "#10b981",
|
|
37474
37482
|
"info": "#58a6ff",
|
|
37475
37483
|
"warning": "#f3d371",
|
|
37476
|
-
"error": "#d1242f"
|
|
37484
|
+
"error": "#d1242f",
|
|
37485
|
+
"positive": "#22c55e",
|
|
37486
|
+
"negative": "#dc2626"
|
|
37477
37487
|
}
|
|
37478
37488
|
};
|
|
37479
37489
|
var DEFAULT_STORM_CONFIG = {
|
package/src/commitizen/index.js
CHANGED
|
@@ -37264,13 +37264,15 @@ 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).
|
|
37267
|
+
var LinkColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).optional().describe("The color used to display ");
|
|
37268
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");
|
|
37269
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");
|
|
37270
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");
|
|
37271
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");
|
|
37272
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");
|
|
37273
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");
|
|
37274
37276
|
var DarkThemeColorConfigSchema = z.object({
|
|
37275
37277
|
foreground: LightColorSchema,
|
|
37276
37278
|
background: DarkColorSchema,
|
|
@@ -37283,7 +37285,9 @@ var DarkThemeColorConfigSchema = z.object({
|
|
|
37283
37285
|
info: InfoColorSchema,
|
|
37284
37286
|
warning: WarningColorSchema,
|
|
37285
37287
|
error: ErrorColorSchema,
|
|
37286
|
-
fatal: FatalColorSchema
|
|
37288
|
+
fatal: FatalColorSchema,
|
|
37289
|
+
positive: PositiveColorSchema,
|
|
37290
|
+
negative: NegativeColorSchema
|
|
37287
37291
|
});
|
|
37288
37292
|
var LightThemeColorConfigSchema = z.object({
|
|
37289
37293
|
foreground: DarkColorSchema,
|
|
@@ -37297,7 +37301,9 @@ var LightThemeColorConfigSchema = z.object({
|
|
|
37297
37301
|
info: InfoColorSchema,
|
|
37298
37302
|
warning: WarningColorSchema,
|
|
37299
37303
|
error: ErrorColorSchema,
|
|
37300
|
-
fatal: FatalColorSchema
|
|
37304
|
+
fatal: FatalColorSchema,
|
|
37305
|
+
positive: PositiveColorSchema,
|
|
37306
|
+
negative: NegativeColorSchema
|
|
37301
37307
|
});
|
|
37302
37308
|
var MultiThemeColorConfigSchema = z.object({
|
|
37303
37309
|
dark: DarkThemeColorConfigSchema,
|
|
@@ -37315,7 +37321,9 @@ var SingleThemeColorConfigSchema = z.object({
|
|
|
37315
37321
|
info: InfoColorSchema,
|
|
37316
37322
|
warning: WarningColorSchema,
|
|
37317
37323
|
error: ErrorColorSchema,
|
|
37318
|
-
fatal: FatalColorSchema
|
|
37324
|
+
fatal: FatalColorSchema,
|
|
37325
|
+
positive: PositiveColorSchema,
|
|
37326
|
+
negative: NegativeColorSchema
|
|
37319
37327
|
});
|
|
37320
37328
|
var RegistryUrlConfigSchema = z.string().trim().toLowerCase().url().optional().describe("A remote registry URL used to publish distributable packages");
|
|
37321
37329
|
var RegistryConfigSchema = z.object({
|
|
@@ -37403,24 +37411,26 @@ var DEFAULT_COLOR_CONFIG = {
|
|
|
37403
37411
|
"foreground": "#1d1e22",
|
|
37404
37412
|
"brand": "#1fb2a6",
|
|
37405
37413
|
"alternate": "#db2777",
|
|
37406
|
-
"link": "#01B4F5",
|
|
37407
37414
|
"help": "#5C4EE5",
|
|
37408
37415
|
"success": "#087f5b",
|
|
37409
37416
|
"info": "#0550ae",
|
|
37410
37417
|
"warning": "#e3b341",
|
|
37411
|
-
"error": "#a40e26"
|
|
37418
|
+
"error": "#a40e26",
|
|
37419
|
+
"positive": "#22c55e",
|
|
37420
|
+
"negative": "#dc2626"
|
|
37412
37421
|
},
|
|
37413
37422
|
"dark": {
|
|
37414
37423
|
"background": "#1d1e22",
|
|
37415
37424
|
"foreground": "#cbd5e1",
|
|
37416
37425
|
"brand": "#2dd4bf",
|
|
37417
37426
|
"alternate": "#db2777",
|
|
37418
|
-
"link": "#01B4F5",
|
|
37419
37427
|
"help": "#818cf8",
|
|
37420
37428
|
"success": "#10b981",
|
|
37421
37429
|
"info": "#58a6ff",
|
|
37422
37430
|
"warning": "#f3d371",
|
|
37423
|
-
"error": "#d1242f"
|
|
37431
|
+
"error": "#d1242f",
|
|
37432
|
+
"positive": "#22c55e",
|
|
37433
|
+
"negative": "#dc2626"
|
|
37424
37434
|
}
|
|
37425
37435
|
};
|
|
37426
37436
|
var DEFAULT_STORM_CONFIG = {
|
package/src/index.js
CHANGED
|
@@ -225740,13 +225740,15 @@ 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).
|
|
225743
|
+
var LinkColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).optional().describe("The color used to display ");
|
|
225744
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");
|
|
225745
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");
|
|
225746
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");
|
|
225747
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");
|
|
225748
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");
|
|
225749
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");
|
|
225750
225752
|
var DarkThemeColorConfigSchema = z2.object({
|
|
225751
225753
|
foreground: LightColorSchema,
|
|
225752
225754
|
background: DarkColorSchema,
|
|
@@ -225759,7 +225761,9 @@ var DarkThemeColorConfigSchema = z2.object({
|
|
|
225759
225761
|
info: InfoColorSchema,
|
|
225760
225762
|
warning: WarningColorSchema,
|
|
225761
225763
|
error: ErrorColorSchema,
|
|
225762
|
-
fatal: FatalColorSchema
|
|
225764
|
+
fatal: FatalColorSchema,
|
|
225765
|
+
positive: PositiveColorSchema,
|
|
225766
|
+
negative: NegativeColorSchema
|
|
225763
225767
|
});
|
|
225764
225768
|
var LightThemeColorConfigSchema = z2.object({
|
|
225765
225769
|
foreground: DarkColorSchema,
|
|
@@ -225773,7 +225777,9 @@ var LightThemeColorConfigSchema = z2.object({
|
|
|
225773
225777
|
info: InfoColorSchema,
|
|
225774
225778
|
warning: WarningColorSchema,
|
|
225775
225779
|
error: ErrorColorSchema,
|
|
225776
|
-
fatal: FatalColorSchema
|
|
225780
|
+
fatal: FatalColorSchema,
|
|
225781
|
+
positive: PositiveColorSchema,
|
|
225782
|
+
negative: NegativeColorSchema
|
|
225777
225783
|
});
|
|
225778
225784
|
var MultiThemeColorConfigSchema = z2.object({
|
|
225779
225785
|
dark: DarkThemeColorConfigSchema,
|
|
@@ -225791,7 +225797,9 @@ var SingleThemeColorConfigSchema = z2.object({
|
|
|
225791
225797
|
info: InfoColorSchema,
|
|
225792
225798
|
warning: WarningColorSchema,
|
|
225793
225799
|
error: ErrorColorSchema,
|
|
225794
|
-
fatal: FatalColorSchema
|
|
225800
|
+
fatal: FatalColorSchema,
|
|
225801
|
+
positive: PositiveColorSchema,
|
|
225802
|
+
negative: NegativeColorSchema
|
|
225795
225803
|
});
|
|
225796
225804
|
var RegistryUrlConfigSchema = z2.string().trim().toLowerCase().url().optional().describe("A remote registry URL used to publish distributable packages");
|
|
225797
225805
|
var RegistryConfigSchema = z2.object({
|
|
@@ -225895,24 +225903,26 @@ var DEFAULT_COLOR_CONFIG = {
|
|
|
225895
225903
|
"foreground": "#1d1e22",
|
|
225896
225904
|
"brand": "#1fb2a6",
|
|
225897
225905
|
"alternate": "#db2777",
|
|
225898
|
-
"link": "#01B4F5",
|
|
225899
225906
|
"help": "#5C4EE5",
|
|
225900
225907
|
"success": "#087f5b",
|
|
225901
225908
|
"info": "#0550ae",
|
|
225902
225909
|
"warning": "#e3b341",
|
|
225903
|
-
"error": "#a40e26"
|
|
225910
|
+
"error": "#a40e26",
|
|
225911
|
+
"positive": "#22c55e",
|
|
225912
|
+
"negative": "#dc2626"
|
|
225904
225913
|
},
|
|
225905
225914
|
"dark": {
|
|
225906
225915
|
"background": "#1d1e22",
|
|
225907
225916
|
"foreground": "#cbd5e1",
|
|
225908
225917
|
"brand": "#2dd4bf",
|
|
225909
225918
|
"alternate": "#db2777",
|
|
225910
|
-
"link": "#01B4F5",
|
|
225911
225919
|
"help": "#818cf8",
|
|
225912
225920
|
"success": "#10b981",
|
|
225913
225921
|
"info": "#58a6ff",
|
|
225914
225922
|
"warning": "#f3d371",
|
|
225915
|
-
"error": "#d1242f"
|
|
225923
|
+
"error": "#d1242f",
|
|
225924
|
+
"positive": "#22c55e",
|
|
225925
|
+
"negative": "#dc2626"
|
|
225916
225926
|
}
|
|
225917
225927
|
};
|
|
225918
225928
|
var DEFAULT_STORM_CONFIG = {
|
|
@@ -225976,7 +225986,7 @@ var getDefaultConfig = (config2 = {}, root3) => {
|
|
|
225976
225986
|
}
|
|
225977
225987
|
return ret;
|
|
225978
225988
|
}, {}),
|
|
225979
|
-
colors: { ...
|
|
225989
|
+
colors: config2.colors ? { ...config2.colors } : { ...DEFAULT_COLOR_CONFIG },
|
|
225980
225990
|
workspaceRoot: workspaceRoot3,
|
|
225981
225991
|
name,
|
|
225982
225992
|
namespace,
|
|
@@ -225984,7 +225994,7 @@ var getDefaultConfig = (config2 = {}, root3) => {
|
|
|
225984
225994
|
license: license ?? DEFAULT_STORM_CONFIG.license,
|
|
225985
225995
|
homepage: homepage ?? DEFAULT_STORM_CONFIG.homepage,
|
|
225986
225996
|
docs: `${homepage ?? DEFAULT_STORM_CONFIG.homepage}/docs`,
|
|
225987
|
-
licensing: `${homepage ?? DEFAULT_STORM_CONFIG.homepage}/
|
|
225997
|
+
licensing: `${homepage ?? DEFAULT_STORM_CONFIG.homepage}/license`,
|
|
225988
225998
|
extensions: {
|
|
225989
225999
|
...config2.extensions
|
|
225990
226000
|
}
|
|
@@ -226364,7 +226374,9 @@ var getSingleThemeColorConfigEnv = (prefix) => {
|
|
|
226364
226374
|
info: process.env[`${prefix}INFO`],
|
|
226365
226375
|
warning: process.env[`${prefix}WARNING`],
|
|
226366
226376
|
error: process.env[`${prefix}ERROR`],
|
|
226367
|
-
fatal: process.env[`${prefix}FATAL`]
|
|
226377
|
+
fatal: process.env[`${prefix}FATAL`],
|
|
226378
|
+
positive: process.env[`${prefix}POSITIVE`],
|
|
226379
|
+
negative: process.env[`${prefix}NEGATIVE`]
|
|
226368
226380
|
};
|
|
226369
226381
|
};
|
|
226370
226382
|
var getMultiThemeColorConfigEnv = (prefix) => {
|
|
@@ -226388,7 +226400,9 @@ var getBaseThemeColorConfigEnv = (prefix) => {
|
|
|
226388
226400
|
info: process.env[`${prefix}INFO`],
|
|
226389
226401
|
warning: process.env[`${prefix}WARNING`],
|
|
226390
226402
|
error: process.env[`${prefix}ERROR`],
|
|
226391
|
-
fatal: process.env[`${prefix}FATAL`]
|
|
226403
|
+
fatal: process.env[`${prefix}FATAL`],
|
|
226404
|
+
positive: process.env[`${prefix}POSITIVE`],
|
|
226405
|
+
negative: process.env[`${prefix}NEGATIVE`]
|
|
226392
226406
|
};
|
|
226393
226407
|
};
|
|
226394
226408
|
|
|
@@ -226611,6 +226625,12 @@ var setSingleThemeColorConfigEnv = (prefix, config2) => {
|
|
|
226611
226625
|
if (config2.fatal) {
|
|
226612
226626
|
process.env[`${prefix}FATAL`] = config2.fatal;
|
|
226613
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
|
+
}
|
|
226614
226634
|
};
|
|
226615
226635
|
var setMultiThemeColorConfigEnv = (prefix, config2) => {
|
|
226616
226636
|
return {
|
|
@@ -226655,6 +226675,12 @@ var setBaseThemeColorConfigEnv = (prefix, config2) => {
|
|
|
226655
226675
|
if (config2.fatal) {
|
|
226656
226676
|
process.env[`${prefix}FATAL`] = config2.fatal;
|
|
226657
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
|
+
}
|
|
226658
226684
|
};
|
|
226659
226685
|
|
|
226660
226686
|
// packages/config-tools/src/create-storm-config.ts
|