@absolutejs/absolute 0.19.0-beta.301 → 0.19.0-beta.303
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/Island-c38gqq3d.svelte +71 -0
- package/dist/build.js +4 -2
- package/dist/build.js.map +3 -3
- package/dist/index.js +4 -2
- package/dist/index.js.map +3 -3
- package/dist/svelte/components/Island.svelte +41 -7
- package/dist/svelte/index.js +1 -1
- package/package.json +1 -1
- package/dist/Island-gx1kc3d5.svelte +0 -37
package/dist/index.js
CHANGED
|
@@ -205637,7 +205637,8 @@ ${code}`;
|
|
|
205637
205637
|
svelteCompiler = await import("svelte/compiler");
|
|
205638
205638
|
}
|
|
205639
205639
|
const isModule = filePath.endsWith(".svelte.ts") || filePath.endsWith(".svelte.js");
|
|
205640
|
-
const
|
|
205640
|
+
const source = isModule ? raw : lowerSvelteIslandSyntax(raw).code;
|
|
205641
|
+
const code = isModule ? compileSvelteModule(source, filePath) : compileSvelteComponent(source, filePath, projectRoot);
|
|
205641
205642
|
return rewriteImports2(code, filePath, projectRoot, rewriter, frameworkDirs);
|
|
205642
205643
|
}, compileVueTemplate = (descriptor, compiledScript, filePath, componentId) => {
|
|
205643
205644
|
const scriptContent = compiledScript.content;
|
|
@@ -205959,6 +205960,7 @@ var init_moduleServer = __esm(() => {
|
|
|
205959
205960
|
init_resolvePackageImport();
|
|
205960
205961
|
init_islandBindingCompat();
|
|
205961
205962
|
init_sourceMetadata();
|
|
205963
|
+
init_lowerIslandSyntax();
|
|
205962
205964
|
init_transformCache();
|
|
205963
205965
|
jsTranspiler2 = new Bun.Transpiler({
|
|
205964
205966
|
loader: "js",
|
|
@@ -215472,5 +215474,5 @@ export {
|
|
|
215472
215474
|
ANGULAR_INIT_TIMEOUT_MS
|
|
215473
215475
|
};
|
|
215474
215476
|
|
|
215475
|
-
//# debugId=
|
|
215477
|
+
//# debugId=9599A488B032E0D464756E2164756E21
|
|
215476
215478
|
//# sourceMappingURL=index.js.map
|