@absolutejs/absolute 0.19.0-beta.391 → 0.19.0-beta.392
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/dist/build.js +9 -1
- package/dist/build.js.map +3 -3
- package/dist/index.js +9 -1
- package/dist/index.js.map +3 -3
- package/package.json +1 -1
package/dist/build.js
CHANGED
|
@@ -174422,6 +174422,14 @@ ${content.slice(firstUseIdx)}`;
|
|
|
174422
174422
|
...cssOutputs
|
|
174423
174423
|
], buildPath)
|
|
174424
174424
|
};
|
|
174425
|
+
if (hmr) {
|
|
174426
|
+
for (const indexPath of svelteIndexPaths) {
|
|
174427
|
+
const baseName = basename7(indexPath).replace(/\.[^.]+$/, "");
|
|
174428
|
+
if (!baseName)
|
|
174429
|
+
continue;
|
|
174430
|
+
manifest[`${toPascal(baseName)}Index`] = indexPath;
|
|
174431
|
+
}
|
|
174432
|
+
}
|
|
174425
174433
|
for (const artifact of serverOutputs) {
|
|
174426
174434
|
const fileWithHash = basename7(artifact.path);
|
|
174427
174435
|
const [baseName] = fileWithHash.split(`.${artifact.hash}.`);
|
|
@@ -179210,5 +179218,5 @@ export {
|
|
|
179210
179218
|
build
|
|
179211
179219
|
};
|
|
179212
179220
|
|
|
179213
|
-
//# debugId=
|
|
179221
|
+
//# debugId=8FFC0C31B034400464756E2164756E21
|
|
179214
179222
|
//# sourceMappingURL=build.js.map
|