@storm-software/linting-tools 1.48.0 → 1.48.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 +12 -0
- package/bin/lint.js +12 -12
- package/package.json +1 -1
- package/src/cli/index.js +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## 1.48.1 (2024-05-06)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### 🩹 Fixes
|
|
5
|
+
|
|
6
|
+
- **markdownlint:** Resolved issue with bad config in lint file ([95b3aba7](https://github.com/storm-software/storm-ops/commit/95b3aba7))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ❤️ Thank You
|
|
10
|
+
|
|
11
|
+
- Patrick Sullivan
|
|
12
|
+
|
|
1
13
|
## 1.48.0 (2024-05-06)
|
|
2
14
|
|
|
3
15
|
### 🚀 Features
|
package/bin/lint.js
CHANGED
|
@@ -360276,7 +360276,7 @@ var z2 = /* @__PURE__ */ Object.freeze({
|
|
|
360276
360276
|
var DarkColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#22272E").describe("The dark background color of the workspace");
|
|
360277
360277
|
var LightColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#f4f4f5").describe("The light background color of the workspace");
|
|
360278
360278
|
var BrandColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#1fb2a6").describe("The first brand specific color of the workspace");
|
|
360279
|
-
var
|
|
360279
|
+
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");
|
|
360280
360280
|
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");
|
|
360281
360281
|
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");
|
|
360282
360282
|
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");
|
|
@@ -360286,7 +360286,7 @@ var DarkThemeColorConfigSchema = z2.object({
|
|
|
360286
360286
|
foreground: LightColorSchema,
|
|
360287
360287
|
background: DarkColorSchema,
|
|
360288
360288
|
brand: BrandColorSchema,
|
|
360289
|
-
|
|
360289
|
+
help: HelpColorSchema,
|
|
360290
360290
|
success: SuccessColorSchema,
|
|
360291
360291
|
info: InfoColorSchema,
|
|
360292
360292
|
warning: WarningColorSchema,
|
|
@@ -360297,7 +360297,7 @@ var LightThemeColorConfigSchema = z2.object({
|
|
|
360297
360297
|
foreground: DarkColorSchema,
|
|
360298
360298
|
background: LightColorSchema,
|
|
360299
360299
|
brand: BrandColorSchema,
|
|
360300
|
-
|
|
360300
|
+
help: HelpColorSchema,
|
|
360301
360301
|
success: SuccessColorSchema,
|
|
360302
360302
|
info: InfoColorSchema,
|
|
360303
360303
|
warning: WarningColorSchema,
|
|
@@ -360312,7 +360312,7 @@ var SingleThemeColorConfigSchema = z2.object({
|
|
|
360312
360312
|
dark: DarkColorSchema,
|
|
360313
360313
|
light: LightColorSchema,
|
|
360314
360314
|
brand: BrandColorSchema,
|
|
360315
|
-
|
|
360315
|
+
help: HelpColorSchema,
|
|
360316
360316
|
success: SuccessColorSchema,
|
|
360317
360317
|
info: InfoColorSchema,
|
|
360318
360318
|
warning: WarningColorSchema,
|
|
@@ -360403,7 +360403,7 @@ var DEFAULT_COLOR_CONFIG = {
|
|
|
360403
360403
|
background: "#f4f4f5",
|
|
360404
360404
|
foreground: "#1d232a",
|
|
360405
360405
|
brand: "#1fb2a6",
|
|
360406
|
-
|
|
360406
|
+
help: "#8250df",
|
|
360407
360407
|
success: "#087f5b",
|
|
360408
360408
|
info: "#0550ae",
|
|
360409
360409
|
warning: "#e3b341",
|
|
@@ -360413,7 +360413,7 @@ var DEFAULT_COLOR_CONFIG = {
|
|
|
360413
360413
|
background: "#22272E",
|
|
360414
360414
|
foreground: "#fcfcf5",
|
|
360415
360415
|
brand: "#1fb2a6",
|
|
360416
|
-
|
|
360416
|
+
help: "#8256D0",
|
|
360417
360417
|
success: "#087f5b",
|
|
360418
360418
|
info: "#316DCA",
|
|
360419
360419
|
warning: "#F3D371",
|
|
@@ -360887,7 +360887,7 @@ var getSingleThemeColorConfigEnv = (prefix) => {
|
|
|
360887
360887
|
dark: process.env[`${prefix}DARK`],
|
|
360888
360888
|
light: process.env[`${prefix}LIGHT`],
|
|
360889
360889
|
brand: process.env[`${prefix}BRAND`],
|
|
360890
|
-
|
|
360890
|
+
help: process.env[`${prefix}HELP`],
|
|
360891
360891
|
success: process.env[`${prefix}SUCCESS`],
|
|
360892
360892
|
info: process.env[`${prefix}INFO`],
|
|
360893
360893
|
warning: process.env[`${prefix}WARNING`],
|
|
@@ -360908,7 +360908,7 @@ var getBaseThemeColorConfigEnv = (prefix) => {
|
|
|
360908
360908
|
foreground: process.env[`${prefix}FOREGROUND`],
|
|
360909
360909
|
background: process.env[`${prefix}BACKGROUND`],
|
|
360910
360910
|
brand: process.env[`${prefix}BRAND`],
|
|
360911
|
-
|
|
360911
|
+
help: process.env[`${prefix}HELP`],
|
|
360912
360912
|
success: process.env[`${prefix}SUCCESS`],
|
|
360913
360913
|
info: process.env[`${prefix}INFO`],
|
|
360914
360914
|
warning: process.env[`${prefix}WARNING`],
|
|
@@ -361078,8 +361078,8 @@ var setSingleThemeColorConfigEnv = (prefix, config) => {
|
|
|
361078
361078
|
if (config.brand) {
|
|
361079
361079
|
process.env[`${prefix}BRAND`] = config.brand;
|
|
361080
361080
|
}
|
|
361081
|
-
if (config.
|
|
361082
|
-
process.env[`${prefix}
|
|
361081
|
+
if (config.help) {
|
|
361082
|
+
process.env[`${prefix}HELP`] = config.help;
|
|
361083
361083
|
}
|
|
361084
361084
|
if (config.success) {
|
|
361085
361085
|
process.env[`${prefix}SUCCESS`] = config.success;
|
|
@@ -361113,8 +361113,8 @@ var setBaseThemeColorConfigEnv = (prefix, config) => {
|
|
|
361113
361113
|
if (config.brand) {
|
|
361114
361114
|
process.env[`${prefix}BRAND`] = config.brand;
|
|
361115
361115
|
}
|
|
361116
|
-
if (config.
|
|
361117
|
-
process.env[`${prefix}
|
|
361116
|
+
if (config.help) {
|
|
361117
|
+
process.env[`${prefix}HELP`] = config.help;
|
|
361118
361118
|
}
|
|
361119
361119
|
if (config.success) {
|
|
361120
361120
|
process.env[`${prefix}SUCCESS`] = config.success;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/linting-tools",
|
|
3
|
-
"version": "1.48.
|
|
3
|
+
"version": "1.48.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "⚡ A package containing various linting tools used to validate syntax, enforce design standards, and format code in a Storm workspace.",
|
|
6
6
|
"keywords": [
|
package/src/cli/index.js
CHANGED
|
@@ -292374,7 +292374,7 @@ var z = /* @__PURE__ */ Object.freeze({
|
|
|
292374
292374
|
var DarkColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#22272E").describe("The dark background color of the workspace");
|
|
292375
292375
|
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");
|
|
292376
292376
|
var BrandColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#1fb2a6").describe("The first brand specific color of the workspace");
|
|
292377
|
-
var
|
|
292377
|
+
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");
|
|
292378
292378
|
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");
|
|
292379
292379
|
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");
|
|
292380
292380
|
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");
|
|
@@ -292384,7 +292384,7 @@ var DarkThemeColorConfigSchema = z.object({
|
|
|
292384
292384
|
foreground: LightColorSchema,
|
|
292385
292385
|
background: DarkColorSchema,
|
|
292386
292386
|
brand: BrandColorSchema,
|
|
292387
|
-
|
|
292387
|
+
help: HelpColorSchema,
|
|
292388
292388
|
success: SuccessColorSchema,
|
|
292389
292389
|
info: InfoColorSchema,
|
|
292390
292390
|
warning: WarningColorSchema,
|
|
@@ -292395,7 +292395,7 @@ var LightThemeColorConfigSchema = z.object({
|
|
|
292395
292395
|
foreground: DarkColorSchema,
|
|
292396
292396
|
background: LightColorSchema,
|
|
292397
292397
|
brand: BrandColorSchema,
|
|
292398
|
-
|
|
292398
|
+
help: HelpColorSchema,
|
|
292399
292399
|
success: SuccessColorSchema,
|
|
292400
292400
|
info: InfoColorSchema,
|
|
292401
292401
|
warning: WarningColorSchema,
|
|
@@ -292410,7 +292410,7 @@ var SingleThemeColorConfigSchema = z.object({
|
|
|
292410
292410
|
dark: DarkColorSchema,
|
|
292411
292411
|
light: LightColorSchema,
|
|
292412
292412
|
brand: BrandColorSchema,
|
|
292413
|
-
|
|
292413
|
+
help: HelpColorSchema,
|
|
292414
292414
|
success: SuccessColorSchema,
|
|
292415
292415
|
info: InfoColorSchema,
|
|
292416
292416
|
warning: WarningColorSchema,
|
|
@@ -292488,7 +292488,7 @@ var DEFAULT_COLOR_CONFIG = {
|
|
|
292488
292488
|
background: "#f4f4f5",
|
|
292489
292489
|
foreground: "#1d232a",
|
|
292490
292490
|
brand: "#1fb2a6",
|
|
292491
|
-
|
|
292491
|
+
help: "#8250df",
|
|
292492
292492
|
success: "#087f5b",
|
|
292493
292493
|
info: "#0550ae",
|
|
292494
292494
|
warning: "#e3b341",
|
|
@@ -292498,7 +292498,7 @@ var DEFAULT_COLOR_CONFIG = {
|
|
|
292498
292498
|
background: "#22272E",
|
|
292499
292499
|
foreground: "#fcfcf5",
|
|
292500
292500
|
brand: "#1fb2a6",
|
|
292501
|
-
|
|
292501
|
+
help: "#8256D0",
|
|
292502
292502
|
success: "#087f5b",
|
|
292503
292503
|
info: "#316DCA",
|
|
292504
292504
|
warning: "#F3D371",
|