@storm-software/esbuild 0.31.32 → 0.31.34
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/esbuild.cjs +7048 -194
- package/dist/build.cjs +4 -4
- package/dist/build.js +3 -3
- package/dist/{chunk-U6XRGLIE.js → chunk-5P5D4BFV.js} +2 -2
- package/dist/{chunk-MJLJTLYN.js → chunk-G6MLFLYW.js} +1 -53
- package/dist/{chunk-P3WA6JHH.cjs → chunk-MBYSWPGX.cjs} +92 -20
- package/dist/{chunk-JLPAYWVX.cjs → chunk-QAMBH2EX.cjs} +3 -3
- package/dist/{chunk-Y2IWVWKY.js → chunk-RZ34JL3B.js} +83 -11
- package/dist/{chunk-X3ZTLBTA.cjs → chunk-YGTIQ2IA.cjs} +3 -55
- package/dist/config.cjs +3 -3
- package/dist/config.js +2 -2
- package/dist/index.cjs +4 -4
- package/dist/index.js +3 -3
- package/dist/plugins/tsc.cjs +2 -2
- package/dist/plugins/tsc.js +1 -1
- package/dist/types.d.cts +5 -2
- package/dist/types.d.ts +5 -2
- package/package.json +4 -4
package/dist/plugins/tsc.cjs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkQAMBH2EXcjs = require('../chunk-QAMBH2EX.cjs');
|
|
4
4
|
require('../chunk-QVWQRHQZ.cjs');
|
|
5
5
|
require('../chunk-XITTOHOG.cjs');
|
|
6
6
|
require('../chunk-BGYQAVKQ.cjs');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.tscPlugin =
|
|
9
|
+
exports.tscPlugin = _chunkQAMBH2EXcjs.tscPlugin;
|
package/dist/plugins/tsc.js
CHANGED
package/dist/types.d.cts
CHANGED
|
@@ -24,12 +24,15 @@ type ESBuildOptions = Omit<BuildOptions, "outbase" | "outfile" | "outExtension"
|
|
|
24
24
|
distDir?: string;
|
|
25
25
|
};
|
|
26
26
|
type ESBuildResult = BuildResult;
|
|
27
|
-
type ESBuildResolvedOptions = Omit<TypeScriptBuildResolvedOptions, "banner" | "footer" | "target" | "format" | "sourcemap" | "outExtension" | "emitOnAll"> & Pick<BuildOptions, "loader" | "inject" | "metafile" | "keepNames" | "target" | "color" | "banner" | "footer" | "sourcemap"> & {
|
|
27
|
+
type ESBuildResolvedOptions = Omit<TypeScriptBuildResolvedOptions, "banner" | "footer" | "target" | "format" | "sourcemap" | "outExtension" | "emitOnAll" | "entryPoints"> & Pick<BuildOptions, "loader" | "inject" | "metafile" | "keepNames" | "target" | "color" | "banner" | "footer" | "sourcemap" | "entryPoints"> & {
|
|
28
28
|
injectShims: boolean;
|
|
29
29
|
outdir: string;
|
|
30
30
|
projectGraph: ProjectGraph;
|
|
31
31
|
projectConfigurations: ProjectsConfigurations;
|
|
32
|
-
entryPoints:
|
|
32
|
+
entryPoints: Array<{
|
|
33
|
+
in: string;
|
|
34
|
+
out: string;
|
|
35
|
+
}>;
|
|
33
36
|
renderers?: Renderer[];
|
|
34
37
|
format: Format;
|
|
35
38
|
distDir: string;
|
package/dist/types.d.ts
CHANGED
|
@@ -24,12 +24,15 @@ type ESBuildOptions = Omit<BuildOptions, "outbase" | "outfile" | "outExtension"
|
|
|
24
24
|
distDir?: string;
|
|
25
25
|
};
|
|
26
26
|
type ESBuildResult = BuildResult;
|
|
27
|
-
type ESBuildResolvedOptions = Omit<TypeScriptBuildResolvedOptions, "banner" | "footer" | "target" | "format" | "sourcemap" | "outExtension" | "emitOnAll"> & Pick<BuildOptions, "loader" | "inject" | "metafile" | "keepNames" | "target" | "color" | "banner" | "footer" | "sourcemap"> & {
|
|
27
|
+
type ESBuildResolvedOptions = Omit<TypeScriptBuildResolvedOptions, "banner" | "footer" | "target" | "format" | "sourcemap" | "outExtension" | "emitOnAll" | "entryPoints"> & Pick<BuildOptions, "loader" | "inject" | "metafile" | "keepNames" | "target" | "color" | "banner" | "footer" | "sourcemap" | "entryPoints"> & {
|
|
28
28
|
injectShims: boolean;
|
|
29
29
|
outdir: string;
|
|
30
30
|
projectGraph: ProjectGraph;
|
|
31
31
|
projectConfigurations: ProjectsConfigurations;
|
|
32
|
-
entryPoints:
|
|
32
|
+
entryPoints: Array<{
|
|
33
|
+
in: string;
|
|
34
|
+
out: string;
|
|
35
|
+
}>;
|
|
33
36
|
renderers?: Renderer[];
|
|
34
37
|
format: Format;
|
|
35
38
|
distDir: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/esbuild",
|
|
3
|
-
"version": "0.31.
|
|
3
|
+
"version": "0.31.34",
|
|
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.6.0",
|
|
174
174
|
"@nx/js": "20.6.0",
|
|
175
|
-
"@storm-software/build-tools": "0.143.
|
|
176
|
-
"@storm-software/config": "1.112.
|
|
177
|
-
"@storm-software/config-tools": "1.162.
|
|
175
|
+
"@storm-software/build-tools": "0.143.28",
|
|
176
|
+
"@storm-software/config": "1.112.5",
|
|
177
|
+
"@storm-software/config-tools": "1.162.2",
|
|
178
178
|
"@types/node": "^22.10.2",
|
|
179
179
|
"rollup": "^4.29.1",
|
|
180
180
|
"spdx-exceptions": "^2.5.0",
|