@storm-software/tsdown 0.31.2 → 0.32.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 +1 -1
- package/{dist/bin → bin}/tsdown.cjs +0 -0
- package/package.json +22 -64
- /package/dist/{src/build.cjs → build.cjs} +0 -0
- /package/dist/{src/build.d.cts → build.d.cts} +0 -0
- /package/dist/{src/build.d.ts → build.d.ts} +0 -0
- /package/dist/{src/build.js → build.js} +0 -0
- /package/dist/{src/chunk-2YE3GBQH.js → chunk-2YE3GBQH.js} +0 -0
- /package/dist/{src/chunk-65E5RX7I.cjs → chunk-65E5RX7I.cjs} +0 -0
- /package/dist/{src/chunk-6F4PWJZI.js → chunk-6F4PWJZI.js} +0 -0
- /package/dist/{src/chunk-GBBMOENP.cjs → chunk-GBBMOENP.cjs} +0 -0
- /package/dist/{src/chunk-IUBNNUNA.js → chunk-IUBNNUNA.js} +0 -0
- /package/dist/{src/chunk-IUFIA7M2.cjs → chunk-IUFIA7M2.cjs} +0 -0
- /package/dist/{src/chunk-J4T3BYOA.js → chunk-J4T3BYOA.js} +0 -0
- /package/dist/{src/chunk-ZBPRDZS4.cjs → chunk-ZBPRDZS4.cjs} +0 -0
- /package/dist/{src/clean.cjs → clean.cjs} +0 -0
- /package/dist/{src/clean.d.cts → clean.d.cts} +0 -0
- /package/dist/{src/clean.d.ts → clean.d.ts} +0 -0
- /package/dist/{src/clean.js → clean.js} +0 -0
- /package/dist/{src/config.cjs → config.cjs} +0 -0
- /package/dist/{src/config.d.cts → config.d.cts} +0 -0
- /package/dist/{src/config.d.ts → config.d.ts} +0 -0
- /package/dist/{src/config.js → config.js} +0 -0
- /package/dist/{src/index.cjs → index.cjs} +0 -0
- /package/dist/{src/index.d.cts → index.d.cts} +0 -0
- /package/dist/{src/index.d.ts → index.d.ts} +0 -0
- /package/dist/{src/index.js → index.js} +0 -0
- /package/dist/{src/types.cjs → types.cjs} +0 -0
- /package/dist/{src/types.d.cts → types.d.cts} +0 -0
- /package/dist/{src/types.d.ts → types.d.ts} +0 -0
- /package/dist/{src/types.js → types.js} +0 -0
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 -->
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/tsdown",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.32.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing `tsdown` utilities for building Storm Software libraries and applications",
|
|
6
6
|
"repository": {
|
|
@@ -40,54 +40,34 @@
|
|
|
40
40
|
},
|
|
41
41
|
"license": "Apache-2.0",
|
|
42
42
|
"private": false,
|
|
43
|
-
"bin": {
|
|
44
|
-
"storm-tsdown": "./bin/tsdown.cjs"
|
|
45
|
-
},
|
|
43
|
+
"bin": { "storm-tsdown": "./bin/tsdown.cjs" },
|
|
46
44
|
"main": "./dist/index.cjs",
|
|
47
45
|
"module": "./dist/index.js",
|
|
48
46
|
"exports": {
|
|
49
47
|
"./package.json": "./package.json",
|
|
50
48
|
"./types": {
|
|
51
|
-
"import": {
|
|
52
|
-
"types": "./dist/types.d.ts",
|
|
53
|
-
"default": "./dist/types.js"
|
|
54
|
-
},
|
|
49
|
+
"import": { "types": "./dist/types.d.ts", "default": "./dist/types.js" },
|
|
55
50
|
"require": {
|
|
56
51
|
"types": "./dist/types.d.cts",
|
|
57
52
|
"default": "./dist/types.cjs"
|
|
58
53
|
},
|
|
59
|
-
"default": {
|
|
60
|
-
"types": "./dist/types.d.ts",
|
|
61
|
-
"default": "./dist/types.js"
|
|
62
|
-
}
|
|
54
|
+
"default": { "types": "./dist/types.d.ts", "default": "./dist/types.js" }
|
|
63
55
|
},
|
|
64
56
|
"./index": {
|
|
65
|
-
"import": {
|
|
66
|
-
"types": "./dist/index.d.ts",
|
|
67
|
-
"default": "./dist/index.js"
|
|
68
|
-
},
|
|
57
|
+
"import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" },
|
|
69
58
|
"require": {
|
|
70
59
|
"types": "./dist/index.d.cts",
|
|
71
60
|
"default": "./dist/index.cjs"
|
|
72
61
|
},
|
|
73
|
-
"default": {
|
|
74
|
-
"types": "./dist/index.d.ts",
|
|
75
|
-
"default": "./dist/index.js"
|
|
76
|
-
}
|
|
62
|
+
"default": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }
|
|
77
63
|
},
|
|
78
64
|
".": {
|
|
79
|
-
"import": {
|
|
80
|
-
"types": "./dist/index.d.ts",
|
|
81
|
-
"default": "./dist/index.js"
|
|
82
|
-
},
|
|
65
|
+
"import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" },
|
|
83
66
|
"require": {
|
|
84
67
|
"types": "./dist/index.d.cts",
|
|
85
68
|
"default": "./dist/index.cjs"
|
|
86
69
|
},
|
|
87
|
-
"default": {
|
|
88
|
-
"types": "./dist/index.d.ts",
|
|
89
|
-
"default": "./dist/index.js"
|
|
90
|
-
}
|
|
70
|
+
"default": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }
|
|
91
71
|
},
|
|
92
72
|
"./config": {
|
|
93
73
|
"import": {
|
|
@@ -104,18 +84,12 @@
|
|
|
104
84
|
}
|
|
105
85
|
},
|
|
106
86
|
"./clean": {
|
|
107
|
-
"import": {
|
|
108
|
-
"types": "./dist/clean.d.ts",
|
|
109
|
-
"default": "./dist/clean.js"
|
|
110
|
-
},
|
|
87
|
+
"import": { "types": "./dist/clean.d.ts", "default": "./dist/clean.js" },
|
|
111
88
|
"require": {
|
|
112
89
|
"types": "./dist/clean.d.cts",
|
|
113
90
|
"default": "./dist/clean.cjs"
|
|
114
91
|
},
|
|
115
|
-
"default": {
|
|
116
|
-
"types": "./dist/clean.d.ts",
|
|
117
|
-
"default": "./dist/clean.js"
|
|
118
|
-
}
|
|
92
|
+
"default": { "types": "./dist/clean.d.ts", "default": "./dist/clean.js" }
|
|
119
93
|
},
|
|
120
94
|
"./build": {
|
|
121
95
|
"import": {
|
|
@@ -147,9 +121,7 @@
|
|
|
147
121
|
}
|
|
148
122
|
},
|
|
149
123
|
"types": "./dist/index.d.ts",
|
|
150
|
-
"files": [
|
|
151
|
-
"dist/**/*"
|
|
152
|
-
],
|
|
124
|
+
"files": ["dist/**/*"],
|
|
153
125
|
"keywords": [
|
|
154
126
|
"acidic",
|
|
155
127
|
"cyclone-ui",
|
|
@@ -169,29 +141,17 @@
|
|
|
169
141
|
"tsdown": "0.5.3"
|
|
170
142
|
},
|
|
171
143
|
"peerDependenciesMeta": {
|
|
172
|
-
"@microsoft/api-extractor": {
|
|
173
|
-
|
|
174
|
-
},
|
|
175
|
-
"
|
|
176
|
-
|
|
177
|
-
}
|
|
178
|
-
"@nx/js": {
|
|
179
|
-
"optional": false
|
|
180
|
-
},
|
|
181
|
-
"spdx-exceptions": {
|
|
182
|
-
"optional": true
|
|
183
|
-
},
|
|
184
|
-
"spdx-license-ids": {
|
|
185
|
-
"optional": true
|
|
186
|
-
},
|
|
187
|
-
"tsdown": {
|
|
188
|
-
"optional": false
|
|
189
|
-
}
|
|
144
|
+
"@microsoft/api-extractor": { "optional": true },
|
|
145
|
+
"@nx/devkit": { "optional": false },
|
|
146
|
+
"@nx/js": { "optional": false },
|
|
147
|
+
"spdx-exceptions": { "optional": true },
|
|
148
|
+
"spdx-license-ids": { "optional": true },
|
|
149
|
+
"tsdown": { "optional": false }
|
|
190
150
|
},
|
|
191
151
|
"dependencies": {
|
|
192
|
-
"@storm-software/build-tools": "0.
|
|
193
|
-
"@storm-software/config": "1.
|
|
194
|
-
"@storm-software/config-tools": "1.
|
|
152
|
+
"@storm-software/build-tools": "^0.148.1",
|
|
153
|
+
"@storm-software/config": "^1.117.1",
|
|
154
|
+
"@storm-software/config-tools": "^1.167.1",
|
|
195
155
|
"chokidar": "^4.0.3",
|
|
196
156
|
"commander": "^12.1.0",
|
|
197
157
|
"es-toolkit": "^1.37.2",
|
|
@@ -212,8 +172,6 @@
|
|
|
212
172
|
"spdx-license-ids": "^3.0.21",
|
|
213
173
|
"tsdown": "0.5.3"
|
|
214
174
|
},
|
|
215
|
-
"publishConfig": {
|
|
216
|
-
"access": "public"
|
|
217
|
-
},
|
|
175
|
+
"publishConfig": { "access": "public" },
|
|
218
176
|
"sideEffects": false
|
|
219
|
-
}
|
|
177
|
+
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|