@storm-software/tsdown 0.28.25 → 0.29.4

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +65 -28
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
- [![Version](https://img.shields.io/badge/version-0.28.24-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
24
+ [![Version](https://img.shields.io/badge/version-0.29.3-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
25
25
 
26
26
  <!-- prettier-ignore-start -->
27
27
  <!-- markdownlint-disable -->
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/tsdown",
3
- "version": "0.28.25",
3
+ "version": "0.29.4",
4
4
  "type": "module",
5
5
  "description": "A package containing `tsdown` utilities for building Storm Software libraries and applications",
6
6
  "repository": {
@@ -40,36 +40,54 @@
40
40
  },
41
41
  "license": "Apache-2.0",
42
42
  "private": false,
43
- "packageManager": "pnpm@10.3.0",
44
- "engines": { "node": ">=22.4.0", "pnpm": ">=10.3.0" },
45
- "bin": { "storm-tsdown": "./bin/tsdown.cjs" },
43
+ "bin": {
44
+ "storm-tsdown": "./bin/tsdown.cjs"
45
+ },
46
46
  "main": "./dist/index.cjs",
47
47
  "module": "./dist/index.js",
48
48
  "exports": {
49
49
  "./package.json": "./package.json",
50
50
  "./types": {
51
- "import": { "types": "./dist/types.d.ts", "default": "./dist/types.js" },
51
+ "import": {
52
+ "types": "./dist/types.d.ts",
53
+ "default": "./dist/types.js"
54
+ },
52
55
  "require": {
53
56
  "types": "./dist/types.d.cts",
54
57
  "default": "./dist/types.cjs"
55
58
  },
56
- "default": { "types": "./dist/types.d.ts", "default": "./dist/types.js" }
59
+ "default": {
60
+ "types": "./dist/types.d.ts",
61
+ "default": "./dist/types.js"
62
+ }
57
63
  },
58
64
  "./index": {
59
- "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" },
65
+ "import": {
66
+ "types": "./dist/index.d.ts",
67
+ "default": "./dist/index.js"
68
+ },
60
69
  "require": {
61
70
  "types": "./dist/index.d.cts",
62
71
  "default": "./dist/index.cjs"
63
72
  },
64
- "default": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }
73
+ "default": {
74
+ "types": "./dist/index.d.ts",
75
+ "default": "./dist/index.js"
76
+ }
65
77
  },
66
78
  ".": {
67
- "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" },
79
+ "import": {
80
+ "types": "./dist/index.d.ts",
81
+ "default": "./dist/index.js"
82
+ },
68
83
  "require": {
69
84
  "types": "./dist/index.d.cts",
70
85
  "default": "./dist/index.cjs"
71
86
  },
72
- "default": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }
87
+ "default": {
88
+ "types": "./dist/index.d.ts",
89
+ "default": "./dist/index.js"
90
+ }
73
91
  },
74
92
  "./config": {
75
93
  "import": {
@@ -86,12 +104,18 @@
86
104
  }
87
105
  },
88
106
  "./clean": {
89
- "import": { "types": "./dist/clean.d.ts", "default": "./dist/clean.js" },
107
+ "import": {
108
+ "types": "./dist/clean.d.ts",
109
+ "default": "./dist/clean.js"
110
+ },
90
111
  "require": {
91
112
  "types": "./dist/clean.d.cts",
92
113
  "default": "./dist/clean.cjs"
93
114
  },
94
- "default": { "types": "./dist/clean.d.ts", "default": "./dist/clean.js" }
115
+ "default": {
116
+ "types": "./dist/clean.d.ts",
117
+ "default": "./dist/clean.js"
118
+ }
95
119
  },
96
120
  "./build": {
97
121
  "import": {
@@ -123,7 +147,9 @@
123
147
  }
124
148
  },
125
149
  "types": "./dist/index.d.ts",
126
- "files": ["dist/**/*"],
150
+ "files": [
151
+ "dist/**/*"
152
+ ],
127
153
  "keywords": [
128
154
  "acidic",
129
155
  "cyclone-ui",
@@ -138,28 +164,37 @@
138
164
  "@microsoft/api-extractor": "^7.48.1",
139
165
  "@nx/devkit": "20.8.0",
140
166
  "@nx/js": "20.8.0",
141
- "@storm-software/build-tools": "workspace:*",
142
- "@storm-software/config": "workspace:*",
143
- "@storm-software/config-tools": "workspace:*",
144
167
  "spdx-exceptions": "^2.5.0",
145
168
  "spdx-license-ids": "^3.0.20",
146
169
  "tsdown": "0.5.3"
147
170
  },
148
171
  "peerDependenciesMeta": {
149
- "@microsoft/api-extractor": { "optional": true },
150
- "@nx/devkit": { "optional": false },
151
- "@nx/js": { "optional": false },
152
- "@storm-software/build-tools": { "optional": false },
153
- "@storm-software/config": { "optional": false },
154
- "@storm-software/config-tools": { "optional": false },
155
- "spdx-exceptions": { "optional": true },
156
- "spdx-license-ids": { "optional": true },
157
- "tsdown": { "optional": false }
172
+ "@microsoft/api-extractor": {
173
+ "optional": true
174
+ },
175
+ "@nx/devkit": {
176
+ "optional": false
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
+ }
158
190
  },
159
191
  "dependencies": {
192
+ "@storm-software/build-tools": "0.145.4",
193
+ "@storm-software/config": "1.114.4",
194
+ "@storm-software/config-tools": "1.164.4",
160
195
  "chokidar": "^4.0.3",
161
196
  "commander": "^12.1.0",
162
- "es-toolkit": "^1.36.0",
197
+ "es-toolkit": "^1.37.2",
163
198
  "globby": "^14.1.0",
164
199
  "nx": "20.8.0",
165
200
  "rolldown": "1.0.0-beta.1",
@@ -177,6 +212,8 @@
177
212
  "spdx-license-ids": "^3.0.21",
178
213
  "tsdown": "0.5.3"
179
214
  },
180
- "publishConfig": { "access": "public" },
215
+ "publishConfig": {
216
+ "access": "public"
217
+ },
181
218
  "sideEffects": false
182
- }
219
+ }