@storm-software/esbuild 0.31.55 → 0.32.2
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/build.cjs +9 -9
- package/dist/build.js +8 -8
- package/dist/{chunk-OFHMWQZF.cjs → chunk-5LN4W7RS.cjs} +1 -1
- package/dist/{chunk-LRVWPYIC.cjs → chunk-63NDGTHK.cjs} +2 -2
- package/dist/{chunk-CEE2QW7F.js → chunk-A6VGGOSN.js} +5 -5
- package/dist/{chunk-KYYHVNV4.cjs → chunk-BFF4J5BM.cjs} +2 -2
- package/dist/{chunk-CJ75TYKD.cjs → chunk-DQKNCLPI.cjs} +45 -45
- package/dist/{chunk-E2ITHLMT.js → chunk-EQ6TXPLW.js} +1 -1
- package/dist/{chunk-ASASYO7N.cjs → chunk-FYFB2IQY.cjs} +3 -3
- package/dist/{chunk-6OP2VX6Y.js → chunk-IY7XC4HQ.js} +1 -1
- package/dist/{chunk-CFK6TJYF.js → chunk-LOXSNNRO.js} +17 -12
- package/dist/{chunk-6AQHAXIU.js → chunk-M4O2EJ6Z.js} +1 -1
- package/dist/{chunk-QYSYE4DQ.cjs → chunk-PKPG6XXP.cjs} +42 -37
- package/dist/{chunk-E4SGSVQK.js → chunk-UAKT6QUX.js} +1 -1
- package/dist/{chunk-SLCDPX5I.js → chunk-V3JNF263.js} +1 -1
- package/dist/{chunk-HTG42YEH.cjs → chunk-VFORKCNS.cjs} +3 -3
- package/dist/{chunk-OPVRR2SU.cjs → chunk-VK6V4C6A.cjs} +2 -2
- package/dist/{chunk-A6P3N2E2.js → chunk-YXPXX5XP.js} +1 -1
- package/dist/clean.cjs +3 -3
- package/dist/clean.d.cts +1 -1
- package/dist/clean.d.ts +1 -1
- package/dist/clean.js +2 -2
- package/dist/config.cjs +5 -5
- package/dist/config.js +4 -4
- package/dist/index.cjs +9 -9
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +8 -8
- package/dist/plugins/deps-check.cjs +3 -3
- package/dist/plugins/deps-check.js +2 -2
- package/dist/plugins/on-error.cjs +3 -3
- package/dist/plugins/on-error.js +2 -2
- package/dist/plugins/tsc.cjs +3 -3
- package/dist/plugins/tsc.js +2 -2
- package/dist/tsc.cjs +3 -3
- package/dist/tsc.d.cts +1 -1
- package/dist/tsc.d.ts +1 -1
- package/dist/tsc.js +2 -2
- package/dist/{types-BVD_-NDh.d.cts → types-B4jbZA4j.d.cts} +14 -14
- package/dist/{types-BVD_-NDh.d.ts → types-B4jbZA4j.d.ts} +14 -14
- package/package.json +5 -5
|
@@ -38,8 +38,8 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
38
38
|
header?: string | undefined;
|
|
39
39
|
}, {
|
|
40
40
|
banner?: string | undefined;
|
|
41
|
-
footer?: string | undefined;
|
|
42
41
|
header?: string | undefined;
|
|
42
|
+
footer?: string | undefined;
|
|
43
43
|
}>;
|
|
44
44
|
account: z.ZodObject<{
|
|
45
45
|
twitter: z.ZodDefault<z.ZodString>;
|
|
@@ -74,7 +74,7 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
74
74
|
url?: string | undefined;
|
|
75
75
|
}>;
|
|
76
76
|
mode: z.ZodDefault<z.ZodEnum<["development", "staging", "production"]>>;
|
|
77
|
-
workspaceRoot: z.
|
|
77
|
+
workspaceRoot: z.ZodString;
|
|
78
78
|
externalPackagePatterns: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
79
79
|
skipCache: z.ZodDefault<z.ZodBoolean>;
|
|
80
80
|
directories: z.ZodObject<{
|
|
@@ -86,15 +86,15 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
86
86
|
build: z.ZodDefault<z.ZodString>;
|
|
87
87
|
}, "strip", z.ZodTypeAny, {
|
|
88
88
|
build: string;
|
|
89
|
-
config?: string | undefined;
|
|
90
89
|
cache?: string | undefined;
|
|
91
90
|
data?: string | undefined;
|
|
91
|
+
config?: string | undefined;
|
|
92
92
|
temp?: string | undefined;
|
|
93
93
|
log?: string | undefined;
|
|
94
94
|
}, {
|
|
95
|
-
config?: string | undefined;
|
|
96
95
|
cache?: string | undefined;
|
|
97
96
|
data?: string | undefined;
|
|
97
|
+
config?: string | undefined;
|
|
98
98
|
temp?: string | undefined;
|
|
99
99
|
log?: string | undefined;
|
|
100
100
|
build?: string | undefined;
|
|
@@ -841,8 +841,6 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
841
841
|
}>]>>]>]>;
|
|
842
842
|
extensions: z.ZodDefault<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
843
843
|
}, "strip", z.ZodTypeAny, {
|
|
844
|
-
logLevel: "debug" | "error" | "silent" | "fatal" | "warn" | "success" | "info" | "trace" | "all";
|
|
845
|
-
mode: "development" | "staging" | "production";
|
|
846
844
|
organization: string;
|
|
847
845
|
license: string;
|
|
848
846
|
homepage: string;
|
|
@@ -872,20 +870,22 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
872
870
|
codesFile: string;
|
|
873
871
|
url?: string | undefined;
|
|
874
872
|
};
|
|
873
|
+
mode: "development" | "staging" | "production";
|
|
875
874
|
workspaceRoot: string;
|
|
876
875
|
externalPackagePatterns: string[];
|
|
877
876
|
skipCache: boolean;
|
|
878
877
|
directories: {
|
|
879
878
|
build: string;
|
|
880
|
-
config?: string | undefined;
|
|
881
879
|
cache?: string | undefined;
|
|
882
880
|
data?: string | undefined;
|
|
881
|
+
config?: string | undefined;
|
|
883
882
|
temp?: string | undefined;
|
|
884
883
|
log?: string | undefined;
|
|
885
884
|
};
|
|
886
885
|
packageManager: "npm" | "yarn" | "pnpm" | "bun";
|
|
887
886
|
timezone: string;
|
|
888
887
|
locale: string;
|
|
888
|
+
logLevel: "error" | "silent" | "fatal" | "warn" | "success" | "info" | "debug" | "trace" | "all";
|
|
889
889
|
registry: {
|
|
890
890
|
github?: string | undefined;
|
|
891
891
|
npm?: string | undefined;
|
|
@@ -1042,9 +1042,9 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
1042
1042
|
};
|
|
1043
1043
|
}>;
|
|
1044
1044
|
extensions: Record<string, any>;
|
|
1045
|
-
name?: string | undefined;
|
|
1046
1045
|
$schema?: string | null | undefined;
|
|
1047
1046
|
extends?: string | string[] | undefined;
|
|
1047
|
+
name?: string | undefined;
|
|
1048
1048
|
namespace?: string | undefined;
|
|
1049
1049
|
repository?: string | undefined;
|
|
1050
1050
|
preid?: string | undefined;
|
|
@@ -1056,8 +1056,8 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
1056
1056
|
};
|
|
1057
1057
|
release: {
|
|
1058
1058
|
banner?: string | undefined;
|
|
1059
|
-
footer?: string | undefined;
|
|
1060
1059
|
header?: string | undefined;
|
|
1060
|
+
footer?: string | undefined;
|
|
1061
1061
|
};
|
|
1062
1062
|
account: {
|
|
1063
1063
|
twitter?: string | undefined;
|
|
@@ -1071,10 +1071,11 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
1071
1071
|
codesFile?: string | undefined;
|
|
1072
1072
|
url?: string | undefined;
|
|
1073
1073
|
};
|
|
1074
|
+
workspaceRoot: string;
|
|
1074
1075
|
directories: {
|
|
1075
|
-
config?: string | undefined;
|
|
1076
1076
|
cache?: string | undefined;
|
|
1077
1077
|
data?: string | undefined;
|
|
1078
|
+
config?: string | undefined;
|
|
1078
1079
|
temp?: string | undefined;
|
|
1079
1080
|
log?: string | undefined;
|
|
1080
1081
|
build?: string | undefined;
|
|
@@ -1226,11 +1227,9 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
1226
1227
|
background?: string | undefined;
|
|
1227
1228
|
};
|
|
1228
1229
|
}>;
|
|
1229
|
-
logLevel?: "debug" | "error" | "silent" | "fatal" | "warn" | "success" | "info" | "trace" | "all" | undefined;
|
|
1230
|
-
name?: string | undefined;
|
|
1231
|
-
mode?: "development" | "staging" | "production" | undefined;
|
|
1232
1230
|
$schema?: string | null | undefined;
|
|
1233
1231
|
extends?: string | string[] | undefined;
|
|
1232
|
+
name?: string | undefined;
|
|
1234
1233
|
namespace?: string | undefined;
|
|
1235
1234
|
organization?: string | undefined;
|
|
1236
1235
|
repository?: string | undefined;
|
|
@@ -1242,12 +1241,13 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
1242
1241
|
branch?: string | undefined;
|
|
1243
1242
|
preid?: string | undefined;
|
|
1244
1243
|
owner?: string | undefined;
|
|
1245
|
-
|
|
1244
|
+
mode?: "development" | "staging" | "production" | undefined;
|
|
1246
1245
|
externalPackagePatterns?: string[] | undefined;
|
|
1247
1246
|
skipCache?: boolean | undefined;
|
|
1248
1247
|
packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
|
|
1249
1248
|
timezone?: string | undefined;
|
|
1250
1249
|
locale?: string | undefined;
|
|
1250
|
+
logLevel?: "error" | "silent" | "fatal" | "warn" | "success" | "info" | "debug" | "trace" | "all" | undefined;
|
|
1251
1251
|
skipConfigLogging?: boolean | undefined;
|
|
1252
1252
|
registry?: {
|
|
1253
1253
|
github?: string | undefined;
|
|
@@ -38,8 +38,8 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
38
38
|
header?: string | undefined;
|
|
39
39
|
}, {
|
|
40
40
|
banner?: string | undefined;
|
|
41
|
-
footer?: string | undefined;
|
|
42
41
|
header?: string | undefined;
|
|
42
|
+
footer?: string | undefined;
|
|
43
43
|
}>;
|
|
44
44
|
account: z.ZodObject<{
|
|
45
45
|
twitter: z.ZodDefault<z.ZodString>;
|
|
@@ -74,7 +74,7 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
74
74
|
url?: string | undefined;
|
|
75
75
|
}>;
|
|
76
76
|
mode: z.ZodDefault<z.ZodEnum<["development", "staging", "production"]>>;
|
|
77
|
-
workspaceRoot: z.
|
|
77
|
+
workspaceRoot: z.ZodString;
|
|
78
78
|
externalPackagePatterns: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
79
79
|
skipCache: z.ZodDefault<z.ZodBoolean>;
|
|
80
80
|
directories: z.ZodObject<{
|
|
@@ -86,15 +86,15 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
86
86
|
build: z.ZodDefault<z.ZodString>;
|
|
87
87
|
}, "strip", z.ZodTypeAny, {
|
|
88
88
|
build: string;
|
|
89
|
-
config?: string | undefined;
|
|
90
89
|
cache?: string | undefined;
|
|
91
90
|
data?: string | undefined;
|
|
91
|
+
config?: string | undefined;
|
|
92
92
|
temp?: string | undefined;
|
|
93
93
|
log?: string | undefined;
|
|
94
94
|
}, {
|
|
95
|
-
config?: string | undefined;
|
|
96
95
|
cache?: string | undefined;
|
|
97
96
|
data?: string | undefined;
|
|
97
|
+
config?: string | undefined;
|
|
98
98
|
temp?: string | undefined;
|
|
99
99
|
log?: string | undefined;
|
|
100
100
|
build?: string | undefined;
|
|
@@ -841,8 +841,6 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
841
841
|
}>]>>]>]>;
|
|
842
842
|
extensions: z.ZodDefault<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
843
843
|
}, "strip", z.ZodTypeAny, {
|
|
844
|
-
logLevel: "debug" | "error" | "silent" | "fatal" | "warn" | "success" | "info" | "trace" | "all";
|
|
845
|
-
mode: "development" | "staging" | "production";
|
|
846
844
|
organization: string;
|
|
847
845
|
license: string;
|
|
848
846
|
homepage: string;
|
|
@@ -872,20 +870,22 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
872
870
|
codesFile: string;
|
|
873
871
|
url?: string | undefined;
|
|
874
872
|
};
|
|
873
|
+
mode: "development" | "staging" | "production";
|
|
875
874
|
workspaceRoot: string;
|
|
876
875
|
externalPackagePatterns: string[];
|
|
877
876
|
skipCache: boolean;
|
|
878
877
|
directories: {
|
|
879
878
|
build: string;
|
|
880
|
-
config?: string | undefined;
|
|
881
879
|
cache?: string | undefined;
|
|
882
880
|
data?: string | undefined;
|
|
881
|
+
config?: string | undefined;
|
|
883
882
|
temp?: string | undefined;
|
|
884
883
|
log?: string | undefined;
|
|
885
884
|
};
|
|
886
885
|
packageManager: "npm" | "yarn" | "pnpm" | "bun";
|
|
887
886
|
timezone: string;
|
|
888
887
|
locale: string;
|
|
888
|
+
logLevel: "error" | "silent" | "fatal" | "warn" | "success" | "info" | "debug" | "trace" | "all";
|
|
889
889
|
registry: {
|
|
890
890
|
github?: string | undefined;
|
|
891
891
|
npm?: string | undefined;
|
|
@@ -1042,9 +1042,9 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
1042
1042
|
};
|
|
1043
1043
|
}>;
|
|
1044
1044
|
extensions: Record<string, any>;
|
|
1045
|
-
name?: string | undefined;
|
|
1046
1045
|
$schema?: string | null | undefined;
|
|
1047
1046
|
extends?: string | string[] | undefined;
|
|
1047
|
+
name?: string | undefined;
|
|
1048
1048
|
namespace?: string | undefined;
|
|
1049
1049
|
repository?: string | undefined;
|
|
1050
1050
|
preid?: string | undefined;
|
|
@@ -1056,8 +1056,8 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
1056
1056
|
};
|
|
1057
1057
|
release: {
|
|
1058
1058
|
banner?: string | undefined;
|
|
1059
|
-
footer?: string | undefined;
|
|
1060
1059
|
header?: string | undefined;
|
|
1060
|
+
footer?: string | undefined;
|
|
1061
1061
|
};
|
|
1062
1062
|
account: {
|
|
1063
1063
|
twitter?: string | undefined;
|
|
@@ -1071,10 +1071,11 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
1071
1071
|
codesFile?: string | undefined;
|
|
1072
1072
|
url?: string | undefined;
|
|
1073
1073
|
};
|
|
1074
|
+
workspaceRoot: string;
|
|
1074
1075
|
directories: {
|
|
1075
|
-
config?: string | undefined;
|
|
1076
1076
|
cache?: string | undefined;
|
|
1077
1077
|
data?: string | undefined;
|
|
1078
|
+
config?: string | undefined;
|
|
1078
1079
|
temp?: string | undefined;
|
|
1079
1080
|
log?: string | undefined;
|
|
1080
1081
|
build?: string | undefined;
|
|
@@ -1226,11 +1227,9 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
1226
1227
|
background?: string | undefined;
|
|
1227
1228
|
};
|
|
1228
1229
|
}>;
|
|
1229
|
-
logLevel?: "debug" | "error" | "silent" | "fatal" | "warn" | "success" | "info" | "trace" | "all" | undefined;
|
|
1230
|
-
name?: string | undefined;
|
|
1231
|
-
mode?: "development" | "staging" | "production" | undefined;
|
|
1232
1230
|
$schema?: string | null | undefined;
|
|
1233
1231
|
extends?: string | string[] | undefined;
|
|
1232
|
+
name?: string | undefined;
|
|
1234
1233
|
namespace?: string | undefined;
|
|
1235
1234
|
organization?: string | undefined;
|
|
1236
1235
|
repository?: string | undefined;
|
|
@@ -1242,12 +1241,13 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
1242
1241
|
branch?: string | undefined;
|
|
1243
1242
|
preid?: string | undefined;
|
|
1244
1243
|
owner?: string | undefined;
|
|
1245
|
-
|
|
1244
|
+
mode?: "development" | "staging" | "production" | undefined;
|
|
1246
1245
|
externalPackagePatterns?: string[] | undefined;
|
|
1247
1246
|
skipCache?: boolean | undefined;
|
|
1248
1247
|
packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
|
|
1249
1248
|
timezone?: string | undefined;
|
|
1250
1249
|
locale?: string | undefined;
|
|
1250
|
+
logLevel?: "error" | "silent" | "fatal" | "warn" | "success" | "info" | "debug" | "trace" | "all" | undefined;
|
|
1251
1251
|
skipConfigLogging?: boolean | undefined;
|
|
1252
1252
|
registry?: {
|
|
1253
1253
|
github?: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/esbuild",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.32.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing `esbuild` utilities for building Storm Software libraries and applications",
|
|
6
6
|
"repository": {
|
|
@@ -166,15 +166,15 @@
|
|
|
166
166
|
"prettier-plugin-pkg": "^0.18.1",
|
|
167
167
|
"prettier-plugin-sh": "^0.15.0",
|
|
168
168
|
"source-map": "0.7.4",
|
|
169
|
-
"tsup": "8.
|
|
169
|
+
"tsup": "8.4.0"
|
|
170
170
|
},
|
|
171
171
|
"devDependencies": {
|
|
172
172
|
"@microsoft/api-extractor": "^7.48.1",
|
|
173
173
|
"@nx/devkit": "20.8.0",
|
|
174
174
|
"@nx/js": "20.8.0",
|
|
175
|
-
"@storm-software/build-tools": "0.143.
|
|
176
|
-
"@storm-software/config": "1.
|
|
177
|
-
"@storm-software/config-tools": "1.
|
|
175
|
+
"@storm-software/build-tools": "0.143.46",
|
|
176
|
+
"@storm-software/config": "1.113.3",
|
|
177
|
+
"@storm-software/config-tools": "1.163.3",
|
|
178
178
|
"@types/node": "^22.10.2",
|
|
179
179
|
"rollup": "^4.29.1",
|
|
180
180
|
"spdx-exceptions": "^2.5.0",
|