rebuildjs 0.56.0 → 0.56.2
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/package.json +2 -2
- package/server/build/index.js +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rebuildjs",
|
|
3
|
-
"version": "0.56.
|
|
3
|
+
"version": "0.56.2",
|
|
4
4
|
"description": "Reactive esbuild...simple hackable alternative to vite for Multi Page Apps",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"reactive",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"elysia": "^0.8.16",
|
|
60
60
|
"esbuild": "^0.20.0",
|
|
61
61
|
"fdir": "^6.1.1",
|
|
62
|
-
"picomatch": "^
|
|
62
|
+
"picomatch": "^4.0.1"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
65
|
"@typescript-eslint/eslint-plugin": "^6.21.0",
|
package/server/build/index.js
CHANGED
|
@@ -283,6 +283,7 @@ export async function rebuildjs_server__build(config) {
|
|
|
283
283
|
...esbuild__config
|
|
284
284
|
} = config ?? {}
|
|
285
285
|
await rm(server_path_(app_ctx), { recursive: true, force: true })
|
|
286
|
+
await mkdir(server_path_(app_ctx), { recursive: true })
|
|
286
287
|
const path_a = await new fdir()
|
|
287
288
|
.glob('**/*.server.{ts,js,tsx,jsx}')
|
|
288
289
|
.withFullPaths()
|