rebuildjs 0.70.25 → 0.70.27
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 +5 -5
- package/server/build/index.js +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rebuildjs",
|
|
3
|
-
"version": "0.70.
|
|
3
|
+
"version": "0.70.27",
|
|
4
4
|
"description": "Reactive esbuild...simple hackable alternative to vite for Multi Page Apps",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"reactive",
|
|
@@ -54,9 +54,9 @@
|
|
|
54
54
|
"./package.json": "./package.json"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"ctx-core": "^7.2.
|
|
58
|
-
"elysia": "^1.0.
|
|
59
|
-
"esbuild": "^0.21.
|
|
57
|
+
"ctx-core": "^7.2.18",
|
|
58
|
+
"elysia": "^1.0.23",
|
|
59
|
+
"esbuild": "^0.21.5",
|
|
60
60
|
"fdir": "^6.1.1",
|
|
61
61
|
"picomatch": "^4.0.2"
|
|
62
62
|
},
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"check-dts": "^0.8.0",
|
|
68
68
|
"eslint": "^9.4.0",
|
|
69
69
|
"esmock": "^2.6.5",
|
|
70
|
-
"tsx": "^4.
|
|
70
|
+
"tsx": "^4.15.1",
|
|
71
71
|
"typescript": "next",
|
|
72
72
|
"uvu": "^0.5.6"
|
|
73
73
|
},
|
package/server/build/index.js
CHANGED
|
@@ -464,7 +464,7 @@ export function rebuildjs_plugin_() {
|
|
|
464
464
|
await cmd(
|
|
465
465
|
cp(cssBundle_path, esbuild_cssBundle_path))
|
|
466
466
|
return true
|
|
467
|
-
})
|
|
467
|
+
}, Infinity)
|
|
468
468
|
}
|
|
469
469
|
if (!await file_exists_(esbuild_cssBundle_map_path)) {
|
|
470
470
|
await file_exists__waitfor(async ()=>{
|
|
@@ -473,7 +473,7 @@ export function rebuildjs_plugin_() {
|
|
|
473
473
|
cssBundle_map_path,
|
|
474
474
|
esbuild_cssBundle_map_path))
|
|
475
475
|
return true
|
|
476
|
-
})
|
|
476
|
+
}, Infinity)
|
|
477
477
|
}
|
|
478
478
|
}
|
|
479
479
|
}
|