Skip to content

Commit f78b0ec

Browse files
committed
fix: issue bundling esm.sh
Signed-off-by: Okiki <[email protected]>
1 parent 3bf6916 commit f78b0ec

File tree

14 files changed

+1564
-1596
lines changed

14 files changed

+1564
-1596
lines changed

.npmrc

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
## force pnpm to hoist
2-
shamefully-hoist = true
2+
shamefully-hoist = true
3+
@jsr:registry=https://npm.jsr.io

.nvmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
22

gulpfile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ task("service-worker", async () => {
470470

471471
// Other assets
472472
task("assets", () => {
473-
return stream([`${assetsFolder}/**/*`, `${tsFolder}/**/*.wasm`], {
473+
return stream([`${assetsFolder}/**/*`, `${tsFolder}/**/*.wasm`, "node_modules/@dprint/typescript/plugin.wasm"], {
474474
dest: destFolder,
475475
});
476476
});

package.json

+16-13
Original file line numberDiff line numberDiff line change
@@ -54,19 +54,22 @@
5454
"dependencies": {
5555
"@amoutonbrady/lz-string": "^0.1.0",
5656
"@dprint/formatter": "^0.3.0",
57+
"@dprint/typescript": "^0.91.1",
5758
"@okikio/animate": "beta",
5859
"@okikio/emitter": "^2.1.7",
5960
"@okikio/native": "^3.0.1",
6061
"@okikio/sharedworker": "^1.0.7",
61-
"@typescript/ata": "^0.9.4",
62+
"@std/media-types": "npm:@jsr/[email protected]",
63+
"@std/path": "npm:@jsr/[email protected]",
64+
"@typescript/ata": "^0.9.6",
6265
"d3": "^7.9.0",
6366
"d3-array": "^3.2.4",
6467
"d3-color": "^3.1.0",
6568
"d3-hierarchy": "^3.1.2",
6669
"d3-scale": "^4.0.2",
6770
"d3-shape": "^3.2.0",
68-
"esbuild-wasm": "^0.21.3",
69-
"monaco-editor": "^0.48.0",
71+
"esbuild-wasm": "^0.21.5",
72+
"monaco-editor": "^0.49.0",
7073
"parse-package-name": "^1.0.0",
7174
"preact": "^10.22.0",
7275
"resolve.exports": "^2.0.2",
@@ -88,15 +91,15 @@
8891
"@types/d3-hierarchy": "^3.1.7",
8992
"@types/d3-scale": "^4.0.8",
9093
"@types/d3-shape": "^3.1.6",
91-
"@types/node": "^20.12.12",
92-
"@vercel/node": "^3.1.5",
94+
"@types/node": "^20.14.2",
95+
"@vercel/node": "^3.1.7",
9396
"autoprefixer": "^10.4.19",
9497
"browser-sync": "^3.0.2",
9598
"commitizen": "^4.3.0",
9699
"cross-fetch": "^4.0.0",
97-
"cssnano": "^7.0.1",
100+
"cssnano": "^7.0.2",
98101
"del": "^7.1.0",
99-
"esbuild": "^0.21.3",
102+
"esbuild": "^0.21.5",
100103
"esbuild-plugin-solid": "^0.6.0",
101104
"esno": "^4.7.0",
102105
"gulp": "^5.0.0",
@@ -124,17 +127,17 @@
124127
"rehype-external-links": "^3.0.0",
125128
"rehype-highlight": "^7.0.0",
126129
"rehype-slug": "^6.0.0",
127-
"rollup": "^4.17.2",
130+
"rollup": "^4.18.0",
128131
"rollup-plugin-dts": "^6.1.1",
129-
"sass": "^1.77.2",
130-
"semantic-release": "^23.1.1",
132+
"sass": "^1.77.5",
133+
"semantic-release": "^24.0.0",
131134
"standard-version": "^9.5.0",
132-
"tailwindcss": "^3.4.3",
135+
"tailwindcss": "^3.4.4",
133136
"text-encoding-shim": "^1.0.5",
134137
"tiny-glob": "^0.2.9",
135138
"typescript": "5.4.5",
136139
"ultrafetch": "^0.4.0",
137-
"vercel": "^34.2.0",
138-
"workbox-build": "^7.1.0"
140+
"vercel": "^34.2.7",
141+
"workbox-build": "^7.1.1"
139142
}
140143
}

0 commit comments

Comments
 (0)