@storm-software/esbuild 0.31.2 → 0.31.3
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/dist/clean.d.cts +10 -10
- package/dist/clean.d.ts +10 -10
- package/package.json +4 -4
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/dist/clean.d.cts
CHANGED
|
@@ -40,15 +40,15 @@ declare const StormConfigSchema: z.ZodObject<{
|
|
|
40
40
|
build: z.ZodDefault<z.ZodString>;
|
|
41
41
|
}, "strip", z.ZodTypeAny, {
|
|
42
42
|
build: string;
|
|
43
|
-
config?: string | undefined;
|
|
44
43
|
cache?: string | undefined;
|
|
45
44
|
data?: string | undefined;
|
|
45
|
+
config?: string | undefined;
|
|
46
46
|
temp?: string | undefined;
|
|
47
47
|
log?: string | undefined;
|
|
48
48
|
}, {
|
|
49
|
-
config?: string | undefined;
|
|
50
49
|
cache?: string | undefined;
|
|
51
50
|
data?: string | undefined;
|
|
51
|
+
config?: string | undefined;
|
|
52
52
|
temp?: string | undefined;
|
|
53
53
|
log?: string | undefined;
|
|
54
54
|
build?: string | undefined;
|
|
@@ -795,8 +795,6 @@ declare const StormConfigSchema: z.ZodObject<{
|
|
|
795
795
|
}>]>>]>]>;
|
|
796
796
|
extensions: z.ZodDefault<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
797
797
|
}, "strip", z.ZodTypeAny, {
|
|
798
|
-
logLevel: "debug" | "silent" | "fatal" | "error" | "warn" | "success" | "info" | "trace" | "all";
|
|
799
|
-
mode: "development" | "staging" | "production";
|
|
800
798
|
organization: string;
|
|
801
799
|
license: string;
|
|
802
800
|
homepage: string;
|
|
@@ -808,20 +806,22 @@ declare const StormConfigSchema: z.ZodObject<{
|
|
|
808
806
|
name: string;
|
|
809
807
|
email: string;
|
|
810
808
|
};
|
|
809
|
+
mode: "development" | "staging" | "production";
|
|
811
810
|
workspaceRoot: string;
|
|
812
811
|
externalPackagePatterns: string[];
|
|
813
812
|
skipCache: boolean;
|
|
814
813
|
directories: {
|
|
815
814
|
build: string;
|
|
816
|
-
config?: string | undefined;
|
|
817
815
|
cache?: string | undefined;
|
|
818
816
|
data?: string | undefined;
|
|
817
|
+
config?: string | undefined;
|
|
819
818
|
temp?: string | undefined;
|
|
820
819
|
log?: string | undefined;
|
|
821
820
|
};
|
|
822
821
|
packageManager: "npm" | "yarn" | "pnpm" | "bun";
|
|
823
822
|
timezone: string;
|
|
824
823
|
locale: string;
|
|
824
|
+
logLevel: "silent" | "fatal" | "error" | "warn" | "success" | "info" | "debug" | "trace" | "all";
|
|
825
825
|
registry: {
|
|
826
826
|
npm?: string | undefined;
|
|
827
827
|
github?: string | undefined;
|
|
@@ -978,9 +978,9 @@ declare const StormConfigSchema: z.ZodObject<{
|
|
|
978
978
|
};
|
|
979
979
|
}>;
|
|
980
980
|
extensions: Record<string, any>;
|
|
981
|
-
name?: string | undefined;
|
|
982
981
|
$schema?: string | null | undefined;
|
|
983
982
|
extends?: string | string[] | undefined;
|
|
983
|
+
name?: string | undefined;
|
|
984
984
|
namespace?: string | undefined;
|
|
985
985
|
repository?: string | undefined;
|
|
986
986
|
preid?: string | undefined;
|
|
@@ -991,9 +991,9 @@ declare const StormConfigSchema: z.ZodObject<{
|
|
|
991
991
|
email?: string | undefined;
|
|
992
992
|
};
|
|
993
993
|
directories: {
|
|
994
|
-
config?: string | undefined;
|
|
995
994
|
cache?: string | undefined;
|
|
996
995
|
data?: string | undefined;
|
|
996
|
+
config?: string | undefined;
|
|
997
997
|
temp?: string | undefined;
|
|
998
998
|
log?: string | undefined;
|
|
999
999
|
build?: string | undefined;
|
|
@@ -1145,11 +1145,9 @@ declare const StormConfigSchema: z.ZodObject<{
|
|
|
1145
1145
|
background?: string | undefined;
|
|
1146
1146
|
};
|
|
1147
1147
|
}>;
|
|
1148
|
-
logLevel?: "debug" | "silent" | "fatal" | "error" | "warn" | "success" | "info" | "trace" | "all" | undefined;
|
|
1149
|
-
name?: string | undefined;
|
|
1150
|
-
mode?: "development" | "staging" | "production" | undefined;
|
|
1151
1148
|
$schema?: string | null | undefined;
|
|
1152
1149
|
extends?: string | string[] | undefined;
|
|
1150
|
+
name?: string | undefined;
|
|
1153
1151
|
namespace?: string | undefined;
|
|
1154
1152
|
organization?: string | undefined;
|
|
1155
1153
|
repository?: string | undefined;
|
|
@@ -1160,12 +1158,14 @@ declare const StormConfigSchema: z.ZodObject<{
|
|
|
1160
1158
|
branch?: string | undefined;
|
|
1161
1159
|
preid?: string | undefined;
|
|
1162
1160
|
owner?: string | undefined;
|
|
1161
|
+
mode?: "development" | "staging" | "production" | undefined;
|
|
1163
1162
|
workspaceRoot?: string | undefined;
|
|
1164
1163
|
externalPackagePatterns?: string[] | undefined;
|
|
1165
1164
|
skipCache?: boolean | undefined;
|
|
1166
1165
|
packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
|
|
1167
1166
|
timezone?: string | undefined;
|
|
1168
1167
|
locale?: string | undefined;
|
|
1168
|
+
logLevel?: "silent" | "fatal" | "error" | "warn" | "success" | "info" | "debug" | "trace" | "all" | undefined;
|
|
1169
1169
|
skipConfigLogging?: boolean | undefined;
|
|
1170
1170
|
registry?: {
|
|
1171
1171
|
npm?: string | undefined;
|
package/dist/clean.d.ts
CHANGED
|
@@ -40,15 +40,15 @@ declare const StormConfigSchema: z.ZodObject<{
|
|
|
40
40
|
build: z.ZodDefault<z.ZodString>;
|
|
41
41
|
}, "strip", z.ZodTypeAny, {
|
|
42
42
|
build: string;
|
|
43
|
-
config?: string | undefined;
|
|
44
43
|
cache?: string | undefined;
|
|
45
44
|
data?: string | undefined;
|
|
45
|
+
config?: string | undefined;
|
|
46
46
|
temp?: string | undefined;
|
|
47
47
|
log?: string | undefined;
|
|
48
48
|
}, {
|
|
49
|
-
config?: string | undefined;
|
|
50
49
|
cache?: string | undefined;
|
|
51
50
|
data?: string | undefined;
|
|
51
|
+
config?: string | undefined;
|
|
52
52
|
temp?: string | undefined;
|
|
53
53
|
log?: string | undefined;
|
|
54
54
|
build?: string | undefined;
|
|
@@ -795,8 +795,6 @@ declare const StormConfigSchema: z.ZodObject<{
|
|
|
795
795
|
}>]>>]>]>;
|
|
796
796
|
extensions: z.ZodDefault<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
797
797
|
}, "strip", z.ZodTypeAny, {
|
|
798
|
-
logLevel: "debug" | "silent" | "fatal" | "error" | "warn" | "success" | "info" | "trace" | "all";
|
|
799
|
-
mode: "development" | "staging" | "production";
|
|
800
798
|
organization: string;
|
|
801
799
|
license: string;
|
|
802
800
|
homepage: string;
|
|
@@ -808,20 +806,22 @@ declare const StormConfigSchema: z.ZodObject<{
|
|
|
808
806
|
name: string;
|
|
809
807
|
email: string;
|
|
810
808
|
};
|
|
809
|
+
mode: "development" | "staging" | "production";
|
|
811
810
|
workspaceRoot: string;
|
|
812
811
|
externalPackagePatterns: string[];
|
|
813
812
|
skipCache: boolean;
|
|
814
813
|
directories: {
|
|
815
814
|
build: string;
|
|
816
|
-
config?: string | undefined;
|
|
817
815
|
cache?: string | undefined;
|
|
818
816
|
data?: string | undefined;
|
|
817
|
+
config?: string | undefined;
|
|
819
818
|
temp?: string | undefined;
|
|
820
819
|
log?: string | undefined;
|
|
821
820
|
};
|
|
822
821
|
packageManager: "npm" | "yarn" | "pnpm" | "bun";
|
|
823
822
|
timezone: string;
|
|
824
823
|
locale: string;
|
|
824
|
+
logLevel: "silent" | "fatal" | "error" | "warn" | "success" | "info" | "debug" | "trace" | "all";
|
|
825
825
|
registry: {
|
|
826
826
|
npm?: string | undefined;
|
|
827
827
|
github?: string | undefined;
|
|
@@ -978,9 +978,9 @@ declare const StormConfigSchema: z.ZodObject<{
|
|
|
978
978
|
};
|
|
979
979
|
}>;
|
|
980
980
|
extensions: Record<string, any>;
|
|
981
|
-
name?: string | undefined;
|
|
982
981
|
$schema?: string | null | undefined;
|
|
983
982
|
extends?: string | string[] | undefined;
|
|
983
|
+
name?: string | undefined;
|
|
984
984
|
namespace?: string | undefined;
|
|
985
985
|
repository?: string | undefined;
|
|
986
986
|
preid?: string | undefined;
|
|
@@ -991,9 +991,9 @@ declare const StormConfigSchema: z.ZodObject<{
|
|
|
991
991
|
email?: string | undefined;
|
|
992
992
|
};
|
|
993
993
|
directories: {
|
|
994
|
-
config?: string | undefined;
|
|
995
994
|
cache?: string | undefined;
|
|
996
995
|
data?: string | undefined;
|
|
996
|
+
config?: string | undefined;
|
|
997
997
|
temp?: string | undefined;
|
|
998
998
|
log?: string | undefined;
|
|
999
999
|
build?: string | undefined;
|
|
@@ -1145,11 +1145,9 @@ declare const StormConfigSchema: z.ZodObject<{
|
|
|
1145
1145
|
background?: string | undefined;
|
|
1146
1146
|
};
|
|
1147
1147
|
}>;
|
|
1148
|
-
logLevel?: "debug" | "silent" | "fatal" | "error" | "warn" | "success" | "info" | "trace" | "all" | undefined;
|
|
1149
|
-
name?: string | undefined;
|
|
1150
|
-
mode?: "development" | "staging" | "production" | undefined;
|
|
1151
1148
|
$schema?: string | null | undefined;
|
|
1152
1149
|
extends?: string | string[] | undefined;
|
|
1150
|
+
name?: string | undefined;
|
|
1153
1151
|
namespace?: string | undefined;
|
|
1154
1152
|
organization?: string | undefined;
|
|
1155
1153
|
repository?: string | undefined;
|
|
@@ -1160,12 +1158,14 @@ declare const StormConfigSchema: z.ZodObject<{
|
|
|
1160
1158
|
branch?: string | undefined;
|
|
1161
1159
|
preid?: string | undefined;
|
|
1162
1160
|
owner?: string | undefined;
|
|
1161
|
+
mode?: "development" | "staging" | "production" | undefined;
|
|
1163
1162
|
workspaceRoot?: string | undefined;
|
|
1164
1163
|
externalPackagePatterns?: string[] | undefined;
|
|
1165
1164
|
skipCache?: boolean | undefined;
|
|
1166
1165
|
packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
|
|
1167
1166
|
timezone?: string | undefined;
|
|
1168
1167
|
locale?: string | undefined;
|
|
1168
|
+
logLevel?: "silent" | "fatal" | "error" | "warn" | "success" | "info" | "debug" | "trace" | "all" | undefined;
|
|
1169
1169
|
skipConfigLogging?: boolean | undefined;
|
|
1170
1170
|
registry?: {
|
|
1171
1171
|
npm?: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/esbuild",
|
|
3
|
-
"version": "0.31.
|
|
3
|
+
"version": "0.31.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing `esbuild` utilities for building Storm Software libraries and applications",
|
|
6
6
|
"repository": {
|
|
@@ -172,9 +172,9 @@
|
|
|
172
172
|
"@microsoft/api-extractor": "^7.48.1",
|
|
173
173
|
"@nx/devkit": "^20.3.1",
|
|
174
174
|
"@nx/js": "^20.3.1",
|
|
175
|
-
"@storm-software/build-tools": "0.143.
|
|
176
|
-
"@storm-software/config": "1.106.
|
|
177
|
-
"@storm-software/config-tools": "1.158.
|
|
175
|
+
"@storm-software/build-tools": "0.143.3",
|
|
176
|
+
"@storm-software/config": "1.106.4",
|
|
177
|
+
"@storm-software/config-tools": "1.158.4",
|
|
178
178
|
"@types/node": "^22.10.2",
|
|
179
179
|
"rollup": "4.29.1",
|
|
180
180
|
"spdx-exceptions": "^2.5.0",
|