@storm-software/linting-tools 1.125.40 → 1.125.42
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 -2
- package/bin/lint.js +1 -2
- package/dist/index.cjs +1 -2
- package/dist/index.d.cts +1 -5
- package/dist/index.d.ts +1 -5
- package/dist/index.js +1 -2
- package/package.json +2 -2
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
|
@@ -322094,7 +322094,6 @@ var organizationConfigSchema = object({
|
|
|
322094
322094
|
"A URL to a page that provides more information about the organization"
|
|
322095
322095
|
)
|
|
322096
322096
|
}).describe("The workspace's organization details");
|
|
322097
|
-
var MODE_OPTIONS = ["development", "staging", "production"];
|
|
322098
322097
|
var stormWorkspaceConfigSchema = object({
|
|
322099
322098
|
$schema: string2().trim().default(
|
|
322100
322099
|
"https://public.storm-cdn.com/schemas/storm-workspace.schema.json"
|
|
@@ -322126,7 +322125,7 @@ var stormWorkspaceConfigSchema = object({
|
|
|
322126
322125
|
release: WorkspaceReleaseConfigSchema,
|
|
322127
322126
|
socials: WorkspaceSocialsConfigSchema,
|
|
322128
322127
|
error: errorConfigSchema,
|
|
322129
|
-
mode:
|
|
322128
|
+
mode: string2().trim().default("production").describe("The current runtime environment mode for the package"),
|
|
322130
322129
|
workspaceRoot: string2().trim().describe("The root directory of the workspace"),
|
|
322131
322130
|
skipCache: boolean2().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
322132
322131
|
directories: WorkspaceDirectoryConfigSchema,
|
package/bin/lint.js
CHANGED
|
@@ -322767,7 +322767,6 @@ var organizationConfigSchema = object({
|
|
|
322767
322767
|
"A URL to a page that provides more information about the organization"
|
|
322768
322768
|
)
|
|
322769
322769
|
}).describe("The workspace's organization details");
|
|
322770
|
-
var MODE_OPTIONS = ["development", "staging", "production"];
|
|
322771
322770
|
var stormWorkspaceConfigSchema = object({
|
|
322772
322771
|
$schema: string2().trim().default(
|
|
322773
322772
|
"https://public.storm-cdn.com/schemas/storm-workspace.schema.json"
|
|
@@ -322799,7 +322798,7 @@ var stormWorkspaceConfigSchema = object({
|
|
|
322799
322798
|
release: WorkspaceReleaseConfigSchema,
|
|
322800
322799
|
socials: WorkspaceSocialsConfigSchema,
|
|
322801
322800
|
error: errorConfigSchema,
|
|
322802
|
-
mode:
|
|
322801
|
+
mode: string2().trim().default("production").describe("The current runtime environment mode for the package"),
|
|
322803
322802
|
workspaceRoot: string2().trim().describe("The root directory of the workspace"),
|
|
322804
322803
|
skipCache: boolean2().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
322805
322804
|
directories: WorkspaceDirectoryConfigSchema,
|
package/dist/index.cjs
CHANGED
|
@@ -322096,7 +322096,6 @@ var organizationConfigSchema = object({
|
|
|
322096
322096
|
"A URL to a page that provides more information about the organization"
|
|
322097
322097
|
)
|
|
322098
322098
|
}).describe("The workspace's organization details");
|
|
322099
|
-
var MODE_OPTIONS = ["development", "staging", "production"];
|
|
322100
322099
|
var stormWorkspaceConfigSchema = object({
|
|
322101
322100
|
$schema: string2().trim().default(
|
|
322102
322101
|
"https://public.storm-cdn.com/schemas/storm-workspace.schema.json"
|
|
@@ -322128,7 +322127,7 @@ var stormWorkspaceConfigSchema = object({
|
|
|
322128
322127
|
release: WorkspaceReleaseConfigSchema,
|
|
322129
322128
|
socials: WorkspaceSocialsConfigSchema,
|
|
322130
322129
|
error: errorConfigSchema,
|
|
322131
|
-
mode:
|
|
322130
|
+
mode: string2().trim().default("production").describe("The current runtime environment mode for the package"),
|
|
322132
322131
|
workspaceRoot: string2().trim().describe("The root directory of the workspace"),
|
|
322133
322132
|
skipCache: boolean2().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
322134
322133
|
directories: WorkspaceDirectoryConfigSchema,
|
package/dist/index.d.cts
CHANGED
|
@@ -48,11 +48,7 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
48
48
|
codesFile: z.ZodDefault<z.ZodString>;
|
|
49
49
|
url: z.ZodOptional<z.ZodURL>;
|
|
50
50
|
}, z.core.$strip>;
|
|
51
|
-
mode: z.
|
|
52
|
-
development: "development";
|
|
53
|
-
staging: "staging";
|
|
54
|
-
production: "production";
|
|
55
|
-
}>>;
|
|
51
|
+
mode: z.ZodDefault<z.ZodString>;
|
|
56
52
|
workspaceRoot: z.ZodString;
|
|
57
53
|
skipCache: z.ZodDefault<z.ZodBoolean>;
|
|
58
54
|
directories: z.ZodObject<{
|
package/dist/index.d.ts
CHANGED
|
@@ -48,11 +48,7 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
48
48
|
codesFile: z.ZodDefault<z.ZodString>;
|
|
49
49
|
url: z.ZodOptional<z.ZodURL>;
|
|
50
50
|
}, z.core.$strip>;
|
|
51
|
-
mode: z.
|
|
52
|
-
development: "development";
|
|
53
|
-
staging: "staging";
|
|
54
|
-
production: "production";
|
|
55
|
-
}>>;
|
|
51
|
+
mode: z.ZodDefault<z.ZodString>;
|
|
56
52
|
workspaceRoot: z.ZodString;
|
|
57
53
|
skipCache: z.ZodDefault<z.ZodBoolean>;
|
|
58
54
|
directories: z.ZodObject<{
|
package/dist/index.js
CHANGED
|
@@ -322769,7 +322769,6 @@ var organizationConfigSchema = object({
|
|
|
322769
322769
|
"A URL to a page that provides more information about the organization"
|
|
322770
322770
|
)
|
|
322771
322771
|
}).describe("The workspace's organization details");
|
|
322772
|
-
var MODE_OPTIONS = ["development", "staging", "production"];
|
|
322773
322772
|
var stormWorkspaceConfigSchema = object({
|
|
322774
322773
|
$schema: string2().trim().default(
|
|
322775
322774
|
"https://public.storm-cdn.com/schemas/storm-workspace.schema.json"
|
|
@@ -322801,7 +322800,7 @@ var stormWorkspaceConfigSchema = object({
|
|
|
322801
322800
|
release: WorkspaceReleaseConfigSchema,
|
|
322802
322801
|
socials: WorkspaceSocialsConfigSchema,
|
|
322803
322802
|
error: errorConfigSchema,
|
|
322804
|
-
mode:
|
|
322803
|
+
mode: string2().trim().default("production").describe("The current runtime environment mode for the package"),
|
|
322805
322804
|
workspaceRoot: string2().trim().describe("The root directory of the workspace"),
|
|
322806
322805
|
skipCache: boolean2().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
322807
322806
|
directories: WorkspaceDirectoryConfigSchema,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/linting-tools",
|
|
3
|
-
"version": "1.125.
|
|
3
|
+
"version": "1.125.42",
|
|
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": {
|
|
@@ -149,5 +149,5 @@
|
|
|
149
149
|
"vfile-reporter": "8.1.1"
|
|
150
150
|
},
|
|
151
151
|
"publishConfig": { "access": "public" },
|
|
152
|
-
"gitHead": "
|
|
152
|
+
"gitHead": "0ffb491f3a2f70a81789ffde3dce3dd911bc12a6"
|
|
153
153
|
}
|