@storm-software/esbuild 0.23.5 → 0.23.7
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;
|
|
43
44
|
cache?: string | undefined;
|
|
44
45
|
data?: string | undefined;
|
|
45
|
-
config?: string | undefined;
|
|
46
46
|
temp?: string | undefined;
|
|
47
47
|
log?: string | undefined;
|
|
48
48
|
}, {
|
|
49
|
+
config?: string | undefined;
|
|
49
50
|
cache?: string | undefined;
|
|
50
51
|
data?: string | undefined;
|
|
51
|
-
config?: string | undefined;
|
|
52
52
|
temp?: string | undefined;
|
|
53
53
|
log?: string | undefined;
|
|
54
54
|
build?: string | undefined;
|
|
@@ -794,6 +794,8 @@ declare const StormConfigSchema: z.ZodObject<{
|
|
|
794
794
|
}>]>>]>]>;
|
|
795
795
|
extensions: z.ZodDefault<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
796
796
|
}, "strip", z.ZodTypeAny, {
|
|
797
|
+
logLevel: "debug" | "silent" | "fatal" | "error" | "warn" | "success" | "info" | "trace" | "all";
|
|
798
|
+
env: "development" | "staging" | "production";
|
|
797
799
|
organization: string;
|
|
798
800
|
license: string;
|
|
799
801
|
homepage: string;
|
|
@@ -805,22 +807,20 @@ declare const StormConfigSchema: z.ZodObject<{
|
|
|
805
807
|
name: string;
|
|
806
808
|
email: string;
|
|
807
809
|
};
|
|
808
|
-
env: "development" | "staging" | "production";
|
|
809
810
|
workspaceRoot: string;
|
|
810
811
|
externalPackagePatterns: string[];
|
|
811
812
|
skipCache: boolean;
|
|
812
813
|
directories: {
|
|
813
814
|
build: string;
|
|
815
|
+
config?: string | undefined;
|
|
814
816
|
cache?: string | undefined;
|
|
815
817
|
data?: string | undefined;
|
|
816
|
-
config?: string | undefined;
|
|
817
818
|
temp?: string | undefined;
|
|
818
819
|
log?: string | undefined;
|
|
819
820
|
};
|
|
820
821
|
packageManager: "npm" | "yarn" | "pnpm" | "bun";
|
|
821
822
|
timezone: string;
|
|
822
823
|
locale: string;
|
|
823
|
-
logLevel: "silent" | "fatal" | "error" | "warn" | "success" | "info" | "debug" | "trace" | "all";
|
|
824
824
|
registry: {
|
|
825
825
|
npm?: string | undefined;
|
|
826
826
|
github?: string | undefined;
|
|
@@ -977,9 +977,9 @@ declare const StormConfigSchema: z.ZodObject<{
|
|
|
977
977
|
};
|
|
978
978
|
}>;
|
|
979
979
|
extensions: Record<string, any>;
|
|
980
|
+
name?: string | undefined;
|
|
980
981
|
$schema?: string | null | undefined;
|
|
981
982
|
extends?: string | string[] | undefined;
|
|
982
|
-
name?: string | undefined;
|
|
983
983
|
namespace?: string | undefined;
|
|
984
984
|
repository?: string | undefined;
|
|
985
985
|
preid?: string | undefined;
|
|
@@ -989,9 +989,9 @@ declare const StormConfigSchema: z.ZodObject<{
|
|
|
989
989
|
email?: string | undefined;
|
|
990
990
|
};
|
|
991
991
|
directories: {
|
|
992
|
+
config?: string | undefined;
|
|
992
993
|
cache?: string | undefined;
|
|
993
994
|
data?: string | undefined;
|
|
994
|
-
config?: string | undefined;
|
|
995
995
|
temp?: string | undefined;
|
|
996
996
|
log?: string | undefined;
|
|
997
997
|
build?: string | undefined;
|
|
@@ -1143,9 +1143,11 @@ declare const StormConfigSchema: z.ZodObject<{
|
|
|
1143
1143
|
background?: string | undefined;
|
|
1144
1144
|
};
|
|
1145
1145
|
}>;
|
|
1146
|
+
logLevel?: "debug" | "silent" | "fatal" | "error" | "warn" | "success" | "info" | "trace" | "all" | undefined;
|
|
1147
|
+
name?: string | undefined;
|
|
1148
|
+
env?: "development" | "staging" | "production" | undefined;
|
|
1146
1149
|
$schema?: string | null | undefined;
|
|
1147
1150
|
extends?: string | string[] | undefined;
|
|
1148
|
-
name?: string | undefined;
|
|
1149
1151
|
namespace?: string | undefined;
|
|
1150
1152
|
organization?: string | undefined;
|
|
1151
1153
|
repository?: string | undefined;
|
|
@@ -1156,14 +1158,12 @@ declare const StormConfigSchema: z.ZodObject<{
|
|
|
1156
1158
|
branch?: string | undefined;
|
|
1157
1159
|
preid?: string | undefined;
|
|
1158
1160
|
owner?: string | undefined;
|
|
1159
|
-
env?: "development" | "staging" | "production" | undefined;
|
|
1160
1161
|
workspaceRoot?: string | undefined;
|
|
1161
1162
|
externalPackagePatterns?: string[] | undefined;
|
|
1162
1163
|
skipCache?: boolean | undefined;
|
|
1163
1164
|
packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
|
|
1164
1165
|
timezone?: string | undefined;
|
|
1165
1166
|
locale?: string | undefined;
|
|
1166
|
-
logLevel?: "silent" | "fatal" | "error" | "warn" | "success" | "info" | "debug" | "trace" | "all" | undefined;
|
|
1167
1167
|
registry?: {
|
|
1168
1168
|
npm?: string | undefined;
|
|
1169
1169
|
github?: 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;
|
|
43
44
|
cache?: string | undefined;
|
|
44
45
|
data?: string | undefined;
|
|
45
|
-
config?: string | undefined;
|
|
46
46
|
temp?: string | undefined;
|
|
47
47
|
log?: string | undefined;
|
|
48
48
|
}, {
|
|
49
|
+
config?: string | undefined;
|
|
49
50
|
cache?: string | undefined;
|
|
50
51
|
data?: string | undefined;
|
|
51
|
-
config?: string | undefined;
|
|
52
52
|
temp?: string | undefined;
|
|
53
53
|
log?: string | undefined;
|
|
54
54
|
build?: string | undefined;
|
|
@@ -794,6 +794,8 @@ declare const StormConfigSchema: z.ZodObject<{
|
|
|
794
794
|
}>]>>]>]>;
|
|
795
795
|
extensions: z.ZodDefault<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
796
796
|
}, "strip", z.ZodTypeAny, {
|
|
797
|
+
logLevel: "debug" | "silent" | "fatal" | "error" | "warn" | "success" | "info" | "trace" | "all";
|
|
798
|
+
env: "development" | "staging" | "production";
|
|
797
799
|
organization: string;
|
|
798
800
|
license: string;
|
|
799
801
|
homepage: string;
|
|
@@ -805,22 +807,20 @@ declare const StormConfigSchema: z.ZodObject<{
|
|
|
805
807
|
name: string;
|
|
806
808
|
email: string;
|
|
807
809
|
};
|
|
808
|
-
env: "development" | "staging" | "production";
|
|
809
810
|
workspaceRoot: string;
|
|
810
811
|
externalPackagePatterns: string[];
|
|
811
812
|
skipCache: boolean;
|
|
812
813
|
directories: {
|
|
813
814
|
build: string;
|
|
815
|
+
config?: string | undefined;
|
|
814
816
|
cache?: string | undefined;
|
|
815
817
|
data?: string | undefined;
|
|
816
|
-
config?: string | undefined;
|
|
817
818
|
temp?: string | undefined;
|
|
818
819
|
log?: string | undefined;
|
|
819
820
|
};
|
|
820
821
|
packageManager: "npm" | "yarn" | "pnpm" | "bun";
|
|
821
822
|
timezone: string;
|
|
822
823
|
locale: string;
|
|
823
|
-
logLevel: "silent" | "fatal" | "error" | "warn" | "success" | "info" | "debug" | "trace" | "all";
|
|
824
824
|
registry: {
|
|
825
825
|
npm?: string | undefined;
|
|
826
826
|
github?: string | undefined;
|
|
@@ -977,9 +977,9 @@ declare const StormConfigSchema: z.ZodObject<{
|
|
|
977
977
|
};
|
|
978
978
|
}>;
|
|
979
979
|
extensions: Record<string, any>;
|
|
980
|
+
name?: string | undefined;
|
|
980
981
|
$schema?: string | null | undefined;
|
|
981
982
|
extends?: string | string[] | undefined;
|
|
982
|
-
name?: string | undefined;
|
|
983
983
|
namespace?: string | undefined;
|
|
984
984
|
repository?: string | undefined;
|
|
985
985
|
preid?: string | undefined;
|
|
@@ -989,9 +989,9 @@ declare const StormConfigSchema: z.ZodObject<{
|
|
|
989
989
|
email?: string | undefined;
|
|
990
990
|
};
|
|
991
991
|
directories: {
|
|
992
|
+
config?: string | undefined;
|
|
992
993
|
cache?: string | undefined;
|
|
993
994
|
data?: string | undefined;
|
|
994
|
-
config?: string | undefined;
|
|
995
995
|
temp?: string | undefined;
|
|
996
996
|
log?: string | undefined;
|
|
997
997
|
build?: string | undefined;
|
|
@@ -1143,9 +1143,11 @@ declare const StormConfigSchema: z.ZodObject<{
|
|
|
1143
1143
|
background?: string | undefined;
|
|
1144
1144
|
};
|
|
1145
1145
|
}>;
|
|
1146
|
+
logLevel?: "debug" | "silent" | "fatal" | "error" | "warn" | "success" | "info" | "trace" | "all" | undefined;
|
|
1147
|
+
name?: string | undefined;
|
|
1148
|
+
env?: "development" | "staging" | "production" | undefined;
|
|
1146
1149
|
$schema?: string | null | undefined;
|
|
1147
1150
|
extends?: string | string[] | undefined;
|
|
1148
|
-
name?: string | undefined;
|
|
1149
1151
|
namespace?: string | undefined;
|
|
1150
1152
|
organization?: string | undefined;
|
|
1151
1153
|
repository?: string | undefined;
|
|
@@ -1156,14 +1158,12 @@ declare const StormConfigSchema: z.ZodObject<{
|
|
|
1156
1158
|
branch?: string | undefined;
|
|
1157
1159
|
preid?: string | undefined;
|
|
1158
1160
|
owner?: string | undefined;
|
|
1159
|
-
env?: "development" | "staging" | "production" | undefined;
|
|
1160
1161
|
workspaceRoot?: string | undefined;
|
|
1161
1162
|
externalPackagePatterns?: string[] | undefined;
|
|
1162
1163
|
skipCache?: boolean | undefined;
|
|
1163
1164
|
packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
|
|
1164
1165
|
timezone?: string | undefined;
|
|
1165
1166
|
locale?: string | undefined;
|
|
1166
|
-
logLevel?: "silent" | "fatal" | "error" | "warn" | "success" | "info" | "debug" | "trace" | "all" | undefined;
|
|
1167
1167
|
registry?: {
|
|
1168
1168
|
npm?: string | undefined;
|
|
1169
1169
|
github?: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/esbuild",
|
|
3
|
-
"version": "0.23.
|
|
3
|
+
"version": "0.23.7",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing `esbuild` utilities for building Storm Software libraries and applications",
|
|
6
6
|
"repository": {
|
|
@@ -171,9 +171,9 @@
|
|
|
171
171
|
"@microsoft/api-extractor": "^7.48.1",
|
|
172
172
|
"@nx/devkit": "^20.3.1",
|
|
173
173
|
"@nx/js": "^20.3.1",
|
|
174
|
-
"@storm-software/build-tools": "0.137.
|
|
175
|
-
"@storm-software/config": "1.100.
|
|
176
|
-
"@storm-software/config-tools": "1.144.
|
|
174
|
+
"@storm-software/build-tools": "0.137.12",
|
|
175
|
+
"@storm-software/config": "1.100.12",
|
|
176
|
+
"@storm-software/config-tools": "1.144.12",
|
|
177
177
|
"@types/node": "^22.10.2",
|
|
178
178
|
"defu": "6.1.4",
|
|
179
179
|
"esbuild": "^0.24.0",
|