@absolutejs/absolute 0.19.0-beta.29 → 0.19.0-beta.30
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/.absolutejs/tsconfig.tsbuildinfo +1 -1
- package/dist/build.js +14 -4
- package/dist/build.js.map +4 -4
- package/dist/index.js +21 -14
- package/dist/index.js.map +5 -5
- package/native/packages/darwin-arm64/package.json +1 -1
- package/native/packages/darwin-x64/package.json +1 -1
- package/native/packages/linux-arm64/package.json +1 -1
- package/native/packages/linux-x64/package.json +1 -1
- package/package.json +5 -5
package/dist/build.js
CHANGED
|
@@ -171464,10 +171464,18 @@ var isDev, extractBuildError = (logs, pass, label, frameworkNames, isIncremental
|
|
|
171464
171464
|
...cssOutputs.map((a) => a.path)
|
|
171465
171465
|
]);
|
|
171466
171466
|
}
|
|
171467
|
+
if (hmr && reactIndexesPath) {
|
|
171468
|
+
const devIndexDir = join11(buildPath, "_src_indexes");
|
|
171469
|
+
mkdirSync6(devIndexDir, { recursive: true });
|
|
171470
|
+
cpSync(reactIndexesPath, devIndexDir, {
|
|
171471
|
+
force: true,
|
|
171472
|
+
recursive: true
|
|
171473
|
+
});
|
|
171474
|
+
}
|
|
171467
171475
|
if (!options?.preserveIntermediateFiles)
|
|
171468
171476
|
await cleanup({
|
|
171469
171477
|
angularDir,
|
|
171470
|
-
reactIndexesPath
|
|
171478
|
+
reactIndexesPath,
|
|
171471
171479
|
svelteDir,
|
|
171472
171480
|
vueDir
|
|
171473
171481
|
});
|
|
@@ -202119,7 +202127,7 @@ var init_pageHandler = __esm(() => {
|
|
|
202119
202127
|
|
|
202120
202128
|
// src/dev/transformCache.ts
|
|
202121
202129
|
import { statSync } from "fs";
|
|
202122
|
-
var cache, getTransformed = (filePath) => {
|
|
202130
|
+
var globalStore, cache, getTransformed = (filePath) => {
|
|
202123
202131
|
const entry = cache.get(filePath);
|
|
202124
202132
|
if (!entry)
|
|
202125
202133
|
return;
|
|
@@ -202137,7 +202145,9 @@ var cache, getTransformed = (filePath) => {
|
|
|
202137
202145
|
cache.delete(filePath);
|
|
202138
202146
|
};
|
|
202139
202147
|
var init_transformCache = __esm(() => {
|
|
202140
|
-
|
|
202148
|
+
globalStore = globalThis;
|
|
202149
|
+
cache = globalStore.__transformCache ?? new Map;
|
|
202150
|
+
globalStore.__transformCache = cache;
|
|
202141
202151
|
});
|
|
202142
202152
|
|
|
202143
202153
|
// src/dev/moduleServer.ts
|
|
@@ -204167,5 +204177,5 @@ export {
|
|
|
204167
204177
|
build
|
|
204168
204178
|
};
|
|
204169
204179
|
|
|
204170
|
-
//# debugId=
|
|
204180
|
+
//# debugId=E4F48BEE8DC556EC64756E2164756E21
|
|
204171
204181
|
//# sourceMappingURL=build.js.map
|