@storm-software/linting-tools 1.107.4 → 1.108.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/README.md +1 -1
- package/bin/lint.cjs +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- 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 -->
|
package/bin/lint.cjs
CHANGED
|
@@ -58,7 +58,7 @@ var STORM_DEFAULT_LICENSING = "https://license.stormsoftware.com";
|
|
|
58
58
|
var STORM_DEFAULT_LICENSE = "Apache-2.0";
|
|
59
59
|
|
|
60
60
|
// ../config/src/schema.ts
|
|
61
|
-
var import_zod = __toESM(require("zod"));
|
|
61
|
+
var import_zod = __toESM(require("zod"), 1);
|
|
62
62
|
var DarkColorSchema = import_zod.default.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#1d1e22").describe("The dark background color of the workspace");
|
|
63
63
|
var LightColorSchema = import_zod.default.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#f4f4f5").describe("The light background color of the workspace");
|
|
64
64
|
var BrandColorSchema = import_zod.default.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#1fb2a6").describe("The primary brand specific color of the workspace");
|
package/dist/index.d.cts
CHANGED
|
@@ -1178,9 +1178,9 @@ declare const StormConfigSchema: z.ZodObject<{
|
|
|
1178
1178
|
|
|
1179
1179
|
type TStormConfig = z.infer<typeof StormConfigSchema>;
|
|
1180
1180
|
type StormConfig<TExtensionName extends keyof TStormConfig["extensions"] = keyof TStormConfig["extensions"], TExtensionConfig extends TStormConfig["extensions"][TExtensionName] = TStormConfig["extensions"][TExtensionName]> = TStormConfig & {
|
|
1181
|
-
extensions
|
|
1181
|
+
extensions: (TStormConfig["extensions"] & {
|
|
1182
1182
|
[extensionName in TExtensionName]: TExtensionConfig;
|
|
1183
|
-
}) | Record<string, any
|
|
1183
|
+
}) | NonNullable<Record<string, any>>;
|
|
1184
1184
|
};
|
|
1185
1185
|
|
|
1186
1186
|
declare function createProgram(config: StormConfig): Command;
|
package/dist/index.d.ts
CHANGED
|
@@ -1178,9 +1178,9 @@ declare const StormConfigSchema: z.ZodObject<{
|
|
|
1178
1178
|
|
|
1179
1179
|
type TStormConfig = z.infer<typeof StormConfigSchema>;
|
|
1180
1180
|
type StormConfig<TExtensionName extends keyof TStormConfig["extensions"] = keyof TStormConfig["extensions"], TExtensionConfig extends TStormConfig["extensions"][TExtensionName] = TStormConfig["extensions"][TExtensionName]> = TStormConfig & {
|
|
1181
|
-
extensions
|
|
1181
|
+
extensions: (TStormConfig["extensions"] & {
|
|
1182
1182
|
[extensionName in TExtensionName]: TExtensionConfig;
|
|
1183
|
-
}) | Record<string, any
|
|
1183
|
+
}) | NonNullable<Record<string, any>>;
|
|
1184
1184
|
};
|
|
1185
1185
|
|
|
1186
1186
|
declare function createProgram(config: StormConfig): Command;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/linting-tools",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.108.0",
|
|
4
4
|
"type": "module",
|
|
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
|
"repository": {
|