@storm-software/esbuild 0.35.13 → 0.36.0
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 +2 -1
- package/package.json +84 -26
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 -->
|
|
@@ -40,6 +40,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
40
40
|
|
|
41
41
|
<!-- START doctoc -->
|
|
42
42
|
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
|
|
43
|
+
|
|
43
44
|
## Table of Contents
|
|
44
45
|
|
|
45
46
|
- [Storm ESBuild Package](#storm-esbuild-package)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/esbuild",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.36.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing `esbuild` utilities for building Storm Software libraries and applications",
|
|
6
6
|
"repository": {
|
|
@@ -40,9 +40,13 @@
|
|
|
40
40
|
},
|
|
41
41
|
"license": "Apache-2.0",
|
|
42
42
|
"private": false,
|
|
43
|
-
"
|
|
44
|
-
|
|
45
|
-
|
|
43
|
+
"engines": {
|
|
44
|
+
"node": ">=22.4.0",
|
|
45
|
+
"pnpm": ">=10.3.0"
|
|
46
|
+
},
|
|
47
|
+
"bin": {
|
|
48
|
+
"storm-esbuild": "./bin/esbuild.cjs"
|
|
49
|
+
},
|
|
46
50
|
"main": "./dist/index.cjs",
|
|
47
51
|
"module": "./dist/index.js",
|
|
48
52
|
"exports": {
|
|
@@ -50,28 +54,46 @@
|
|
|
50
54
|
"./assets/cjs_shims.js": "./assets/cjs_shims.js",
|
|
51
55
|
"./assets/esm_shims.js": "./assets/esm_shims.js",
|
|
52
56
|
"./types": {
|
|
53
|
-
"import": {
|
|
57
|
+
"import": {
|
|
58
|
+
"types": "./dist/types.d.ts",
|
|
59
|
+
"default": "./dist/types.js"
|
|
60
|
+
},
|
|
54
61
|
"require": {
|
|
55
62
|
"types": "./dist/types.d.cts",
|
|
56
63
|
"default": "./dist/types.cjs"
|
|
57
64
|
},
|
|
58
|
-
"default": {
|
|
65
|
+
"default": {
|
|
66
|
+
"types": "./dist/types.d.ts",
|
|
67
|
+
"default": "./dist/types.js"
|
|
68
|
+
}
|
|
59
69
|
},
|
|
60
70
|
"./index": {
|
|
61
|
-
"import": {
|
|
71
|
+
"import": {
|
|
72
|
+
"types": "./dist/index.d.ts",
|
|
73
|
+
"default": "./dist/index.js"
|
|
74
|
+
},
|
|
62
75
|
"require": {
|
|
63
76
|
"types": "./dist/index.d.cts",
|
|
64
77
|
"default": "./dist/index.cjs"
|
|
65
78
|
},
|
|
66
|
-
"default": {
|
|
79
|
+
"default": {
|
|
80
|
+
"types": "./dist/index.d.ts",
|
|
81
|
+
"default": "./dist/index.js"
|
|
82
|
+
}
|
|
67
83
|
},
|
|
68
84
|
".": {
|
|
69
|
-
"import": {
|
|
85
|
+
"import": {
|
|
86
|
+
"types": "./dist/index.d.ts",
|
|
87
|
+
"default": "./dist/index.js"
|
|
88
|
+
},
|
|
70
89
|
"require": {
|
|
71
90
|
"types": "./dist/index.d.cts",
|
|
72
91
|
"default": "./dist/index.cjs"
|
|
73
92
|
},
|
|
74
|
-
"default": {
|
|
93
|
+
"default": {
|
|
94
|
+
"types": "./dist/index.d.ts",
|
|
95
|
+
"default": "./dist/index.js"
|
|
96
|
+
}
|
|
75
97
|
},
|
|
76
98
|
"./config": {
|
|
77
99
|
"import": {
|
|
@@ -88,20 +110,32 @@
|
|
|
88
110
|
}
|
|
89
111
|
},
|
|
90
112
|
"./clean": {
|
|
91
|
-
"import": {
|
|
113
|
+
"import": {
|
|
114
|
+
"types": "./dist/clean.d.ts",
|
|
115
|
+
"default": "./dist/clean.js"
|
|
116
|
+
},
|
|
92
117
|
"require": {
|
|
93
118
|
"types": "./dist/clean.d.cts",
|
|
94
119
|
"default": "./dist/clean.cjs"
|
|
95
120
|
},
|
|
96
|
-
"default": {
|
|
121
|
+
"default": {
|
|
122
|
+
"types": "./dist/clean.d.ts",
|
|
123
|
+
"default": "./dist/clean.js"
|
|
124
|
+
}
|
|
97
125
|
},
|
|
98
126
|
"./build": {
|
|
99
|
-
"import": {
|
|
127
|
+
"import": {
|
|
128
|
+
"types": "./dist/build.d.ts",
|
|
129
|
+
"default": "./dist/build.js"
|
|
130
|
+
},
|
|
100
131
|
"require": {
|
|
101
132
|
"types": "./dist/build.d.cts",
|
|
102
133
|
"default": "./dist/build.cjs"
|
|
103
134
|
},
|
|
104
|
-
"default": {
|
|
135
|
+
"default": {
|
|
136
|
+
"types": "./dist/build.d.ts",
|
|
137
|
+
"default": "./dist/build.js"
|
|
138
|
+
}
|
|
105
139
|
},
|
|
106
140
|
"./assets": {
|
|
107
141
|
"import": {
|
|
@@ -146,17 +180,32 @@
|
|
|
146
180
|
}
|
|
147
181
|
},
|
|
148
182
|
"./tsup": {
|
|
149
|
-
"import": {
|
|
150
|
-
|
|
151
|
-
|
|
183
|
+
"import": {
|
|
184
|
+
"types": "./dist/tsup.d.ts",
|
|
185
|
+
"default": "./dist/tsup.js"
|
|
186
|
+
},
|
|
187
|
+
"require": {
|
|
188
|
+
"types": "./dist/tsup.d.cts",
|
|
189
|
+
"default": "./dist/tsup.cjs"
|
|
190
|
+
},
|
|
191
|
+
"default": {
|
|
192
|
+
"types": "./dist/tsup.d.ts",
|
|
193
|
+
"default": "./dist/tsup.js"
|
|
194
|
+
}
|
|
152
195
|
},
|
|
153
196
|
"./watch": {
|
|
154
|
-
"import": {
|
|
197
|
+
"import": {
|
|
198
|
+
"types": "./dist/watch.d.ts",
|
|
199
|
+
"default": "./dist/watch.js"
|
|
200
|
+
},
|
|
155
201
|
"require": {
|
|
156
202
|
"types": "./dist/watch.d.cts",
|
|
157
203
|
"default": "./dist/watch.cjs"
|
|
158
204
|
},
|
|
159
|
-
"default": {
|
|
205
|
+
"default": {
|
|
206
|
+
"types": "./dist/watch.d.ts",
|
|
207
|
+
"default": "./dist/watch.js"
|
|
208
|
+
}
|
|
160
209
|
},
|
|
161
210
|
"./plugins/*": {
|
|
162
211
|
"import": {
|
|
@@ -174,7 +223,11 @@
|
|
|
174
223
|
}
|
|
175
224
|
},
|
|
176
225
|
"types": "./dist/index.d.ts",
|
|
177
|
-
"files": [
|
|
226
|
+
"files": [
|
|
227
|
+
"assets/**/*",
|
|
228
|
+
"bin/**/*",
|
|
229
|
+
"dist/**/*"
|
|
230
|
+
],
|
|
178
231
|
"keywords": [
|
|
179
232
|
"esbuild",
|
|
180
233
|
"monorepo",
|
|
@@ -186,9 +239,9 @@
|
|
|
186
239
|
"dependencies": {
|
|
187
240
|
"@nx/devkit": "20.8.0",
|
|
188
241
|
"@nx/js": "20.8.0",
|
|
189
|
-
"@storm-software/build-tools": "0.
|
|
190
|
-
"@storm-software/config": "1.
|
|
191
|
-
"@storm-software/config-tools": "1.
|
|
242
|
+
"@storm-software/build-tools": "0.145.0",
|
|
243
|
+
"@storm-software/config": "1.114.0",
|
|
244
|
+
"@storm-software/config-tools": "1.164.0",
|
|
192
245
|
"chokidar": "^4.0.3",
|
|
193
246
|
"commander": "^12.1.0",
|
|
194
247
|
"defu": "6.1.4",
|
|
@@ -197,7 +250,12 @@
|
|
|
197
250
|
"globby": "^14.1.0",
|
|
198
251
|
"tsup": "8.4.0"
|
|
199
252
|
},
|
|
200
|
-
"devDependencies": {
|
|
201
|
-
|
|
253
|
+
"devDependencies": {
|
|
254
|
+
"@types/node": "^22.10.2",
|
|
255
|
+
"nx": "20.8.0"
|
|
256
|
+
},
|
|
257
|
+
"publishConfig": {
|
|
258
|
+
"access": "public"
|
|
259
|
+
},
|
|
202
260
|
"sideEffects": false
|
|
203
|
-
}
|
|
261
|
+
}
|