@b9g/shovel 0.2.12 → 0.2.13
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/CHANGELOG.md +8 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,12 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to Shovel will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [0.2.13] - 2026-02-24
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- **`@b9g/shovel`** - Fixed missing `esbuild-plugins-node-modules-polyfill` dependency causing "Cannot find package" errors at runtime
|
|
10
|
+
|
|
5
11
|
## [0.2.12] - 2026-02-24
|
|
6
12
|
|
|
7
13
|
### Bug Fixes
|
|
8
14
|
|
|
9
15
|
- **`@b9g/shovel`** - Plain `.js` and `.mjs` client assets are now bundled for the browser instead of copied raw. Previously only `.ts`/`.tsx`/`.jsx` were transpiled, so non-TypeScript Crank projects using `@b9g/crank/standalone` in client code failed with "Module name does not resolve to a valid URL" in the browser
|
|
10
16
|
- **`@b9g/shovel`** - Removed `.cts` from asset transpilation list (no CJS in client assets)
|
|
17
|
+
- **`@b9g/shovel`** - Replaced deprecated `@esbuild-plugins/node-modules-polyfill` and `@esbuild-plugins/node-globals-polyfill` with `esbuild-plugins-node-modules-polyfill`, eliminating deprecation warnings and audit vulnerabilities
|
|
11
18
|
- **`@b9g/router`** - Simplified logger middleware to a single response line (`200 GET / (3ms)`) instead of logging both request and response with arrow prefixes
|
|
12
19
|
|
|
13
20
|
### Improvements
|
|
@@ -17,6 +24,7 @@ All notable changes to Shovel will be documented in this file.
|
|
|
17
24
|
- **`create-shovel`** - Added API call demo to full-stack vanilla template
|
|
18
25
|
- **`create-shovel`** - Crank templates now include client-side hydration with `@b9g/assets`
|
|
19
26
|
- **`create-shovel`** - Initial project version is now `0.1.0` instead of `0.0.1`
|
|
27
|
+
- **`create-shovel`** - Bumped generated eslint to `^10.0.0` (fixes audit vulnerabilities in generated projects)
|
|
20
28
|
|
|
21
29
|
### Dependencies
|
|
22
30
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@b9g/shovel",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.13",
|
|
4
4
|
"description": "ServiceWorker-first universal deployment platform. Write ServiceWorker apps once, deploy anywhere (Node/Bun/Cloudflare). Registry-based multi-app orchestration.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
"@logtape/logtape": "^2.0.0",
|
|
28
28
|
"commander": "^13.1.0",
|
|
29
29
|
"esbuild": "^0.27.2",
|
|
30
|
+
"esbuild-plugins-node-modules-polyfill": "^1.8.1",
|
|
30
31
|
"mime": "^4.0.4",
|
|
31
32
|
"zod": "^3.23.0"
|
|
32
33
|
},
|
|
@@ -40,7 +41,6 @@
|
|
|
40
41
|
"@types/bun": "^1.3.4",
|
|
41
42
|
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
42
43
|
"@typescript-eslint/parser": "^8.0.0",
|
|
43
|
-
"esbuild-plugins-node-modules-polyfill": "^1.8.1",
|
|
44
44
|
"eslint": "^9.0.0",
|
|
45
45
|
"eslint-config-prettier": "^10.0.0",
|
|
46
46
|
"eslint-plugin-prettier": "^5.0.0",
|