@storm-software/unbuild 0.41.22 → 0.42.1

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 -2
  2. package/package.json +69 -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.41.21-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.42.0-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 -->
@@ -40,7 +40,6 @@ 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
-
44
43
  ## Table of Contents
45
44
 
46
45
  - [Storm Unbuild Package](#storm-unbuild-package)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/unbuild",
3
- "version": "0.41.22",
3
+ "version": "0.42.1",
4
4
  "type": "module",
5
5
  "description": "A package containing `unbuild` utilities for building Storm Software libraries and applications",
6
6
  "repository": {
@@ -40,8 +40,6 @@
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
43
  "bin": {
46
44
  "storm-unbuild": "./bin/unbuild.js",
47
45
  "storm-unbuild-cjs": "./bin/unbuild.cjs",
@@ -52,28 +50,46 @@
52
50
  "exports": {
53
51
  "./package.json": "./package.json",
54
52
  "./types": {
55
- "import": { "types": "./dist/types.d.ts", "default": "./dist/types.js" },
53
+ "import": {
54
+ "types": "./dist/types.d.ts",
55
+ "default": "./dist/types.js"
56
+ },
56
57
  "require": {
57
58
  "types": "./dist/types.d.cts",
58
59
  "default": "./dist/types.cjs"
59
60
  },
60
- "default": { "types": "./dist/types.d.ts", "default": "./dist/types.js" }
61
+ "default": {
62
+ "types": "./dist/types.d.ts",
63
+ "default": "./dist/types.js"
64
+ }
61
65
  },
62
66
  "./index": {
63
- "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" },
67
+ "import": {
68
+ "types": "./dist/index.d.ts",
69
+ "default": "./dist/index.js"
70
+ },
64
71
  "require": {
65
72
  "types": "./dist/index.d.cts",
66
73
  "default": "./dist/index.cjs"
67
74
  },
68
- "default": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }
75
+ "default": {
76
+ "types": "./dist/index.d.ts",
77
+ "default": "./dist/index.js"
78
+ }
69
79
  },
70
80
  ".": {
71
- "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" },
81
+ "import": {
82
+ "types": "./dist/index.d.ts",
83
+ "default": "./dist/index.js"
84
+ },
72
85
  "require": {
73
86
  "types": "./dist/index.d.cts",
74
87
  "default": "./dist/index.cjs"
75
88
  },
76
- "default": { "types": "./dist/index.d.ts", "default": "./dist/index.cjs" }
89
+ "default": {
90
+ "types": "./dist/index.d.ts",
91
+ "default": "./dist/index.cjs"
92
+ }
77
93
  },
78
94
  "./config": {
79
95
  "import": {
@@ -90,20 +106,32 @@
90
106
  }
91
107
  },
92
108
  "./clean": {
93
- "import": { "types": "./dist/clean.d.ts", "default": "./dist/clean.js" },
109
+ "import": {
110
+ "types": "./dist/clean.d.ts",
111
+ "default": "./dist/clean.js"
112
+ },
94
113
  "require": {
95
114
  "types": "./dist/clean.d.cts",
96
115
  "default": "./dist/clean.cjs"
97
116
  },
98
- "default": { "types": "./dist/clean.d.ts", "default": "./dist/clean.js" }
117
+ "default": {
118
+ "types": "./dist/clean.d.ts",
119
+ "default": "./dist/clean.js"
120
+ }
99
121
  },
100
122
  "./build": {
101
- "import": { "types": "./dist/build.d.ts", "default": "./dist/build.js" },
123
+ "import": {
124
+ "types": "./dist/build.d.ts",
125
+ "default": "./dist/build.js"
126
+ },
102
127
  "require": {
103
128
  "types": "./dist/build.d.cts",
104
129
  "default": "./dist/build.cjs"
105
130
  },
106
- "default": { "types": "./dist/build.d.ts", "default": "./dist/build.js" }
131
+ "default": {
132
+ "types": "./dist/build.d.ts",
133
+ "default": "./dist/build.js"
134
+ }
107
135
  },
108
136
  "./plugins/*": {
109
137
  "import": {
@@ -121,7 +149,9 @@
121
149
  }
122
150
  },
123
151
  "types": "./dist/index.d.ts",
124
- "files": ["dist/**/*"],
152
+ "files": [
153
+ "dist/**/*"
154
+ ],
125
155
  "keywords": [
126
156
  "acidic",
127
157
  "cyclone-ui",
@@ -135,26 +165,35 @@
135
165
  "peerDependencies": {
136
166
  "@nx/devkit": "20.8.0",
137
167
  "@nx/js": "20.8.0",
138
- "@storm-software/build-tools": "workspace:*",
139
- "@storm-software/config": "workspace:*",
140
- "@storm-software/config-tools": "workspace:*",
141
168
  "@swc/core": "1.7.26",
142
169
  "nx": "20.8.0",
143
170
  "rollup": "^4.29.1",
144
171
  "typescript": "^5.8.3"
145
172
  },
146
173
  "peerDependenciesMeta": {
147
- "@nx/devkit": { "optional": false },
148
- "@nx/js": { "optional": false },
149
- "@storm-software/build-tools": { "optional": false },
150
- "@storm-software/config": { "optional": false },
151
- "@storm-software/config-tools": { "optional": false },
152
- "@swc/core": { "optional": true },
153
- "nx": { "optional": true },
154
- "rollup": { "optional": false },
155
- "typescript": { "optional": false }
174
+ "@nx/devkit": {
175
+ "optional": false
176
+ },
177
+ "@nx/js": {
178
+ "optional": false
179
+ },
180
+ "@swc/core": {
181
+ "optional": true
182
+ },
183
+ "nx": {
184
+ "optional": true
185
+ },
186
+ "rollup": {
187
+ "optional": false
188
+ },
189
+ "typescript": {
190
+ "optional": false
191
+ }
156
192
  },
157
193
  "dependencies": {
194
+ "@storm-software/build-tools": "0.145.1",
195
+ "@storm-software/config": "1.114.1",
196
+ "@storm-software/config-tools": "1.164.1",
158
197
  "commander": "^12.1.0",
159
198
  "defu": "6.1.4",
160
199
  "esbuild": "^0.25.0",
@@ -174,6 +213,8 @@
174
213
  "tsup": "8.4.0",
175
214
  "typescript": "^5.8.3"
176
215
  },
177
- "publishConfig": { "access": "public" },
216
+ "publishConfig": {
217
+ "access": "public"
218
+ },
178
219
  "sideEffects": false
179
- }
220
+ }