diff --git a/test/js/samples/component-static-var/expected.js b/test/js/samples/component-static-var/expected.js index 2cd5ed386f..9e481a25c3 100644 --- a/test/js/samples/component-static-var/expected.js +++ b/test/js/samples/component-static-var/expected.js @@ -16,8 +16,8 @@ import { transition_out } from "svelte/internal"; -import Foo from "./Foo.svelte"; -import Bar from "./Bar.svelte"; +import Foo from './Foo.svelte'; +import Bar from './Bar.svelte'; function create_fragment(ctx) { let foo; diff --git a/test/js/samples/component-store-access-invalidate/expected.js b/test/js/samples/component-store-access-invalidate/expected.js index 4c7bfd7009..2742481aef 100644 --- a/test/js/samples/component-store-access-invalidate/expected.js +++ b/test/js/samples/component-store-access-invalidate/expected.js @@ -13,7 +13,7 @@ import { text } from "svelte/internal"; -import { writable } from "svelte/store"; +import { writable } from 'svelte/store'; function create_fragment(ctx) { let h1; diff --git a/test/js/samples/component-store-file-invalidate/expected.js b/test/js/samples/component-store-file-invalidate/expected.js index d2fb3d0be4..86a467f368 100644 --- a/test/js/samples/component-store-file-invalidate/expected.js +++ b/test/js/samples/component-store-file-invalidate/expected.js @@ -7,7 +7,7 @@ import { set_store_value } from "svelte/internal"; -import { count } from "./store.js"; +import { count } from './store.js'; function instance($$self, $$props, $$invalidate) { let $count; diff --git a/test/js/samples/component-store-reassign-invalidate/expected.js b/test/js/samples/component-store-reassign-invalidate/expected.js index 0cf555bf0d..9047316cef 100644 --- a/test/js/samples/component-store-reassign-invalidate/expected.js +++ b/test/js/samples/component-store-reassign-invalidate/expected.js @@ -15,7 +15,7 @@ import { text } from "svelte/internal"; -import { writable } from "svelte/store"; +import { writable } from 'svelte/store'; function create_fragment(ctx) { let h1; diff --git a/test/js/samples/deconflict-globals/expected.js b/test/js/samples/deconflict-globals/expected.js index ae105d5e30..c048cc2ddd 100644 --- a/test/js/samples/deconflict-globals/expected.js +++ b/test/js/samples/deconflict-globals/expected.js @@ -1,7 +1,7 @@ /* generated by Svelte vX.Y.Z */ import { SvelteComponent, init, safe_not_equal } from "svelte/internal"; -import { onMount } from "svelte"; +import { onMount } from 'svelte'; function instance($$self, $$props, $$invalidate) { let { foo = 'bar' } = $$props; diff --git a/test/js/samples/dynamic-import/expected.js b/test/js/samples/dynamic-import/expected.js index 1365b14f10..d25a825d3b 100644 --- a/test/js/samples/dynamic-import/expected.js +++ b/test/js/samples/dynamic-import/expected.js @@ -11,7 +11,7 @@ import { transition_out } from "svelte/internal"; -import LazyLoad from "./LazyLoad.svelte"; +import LazyLoad from './LazyLoad.svelte'; function create_fragment(ctx) { let lazyload; diff --git a/test/js/samples/export-from-accessors/expected.js b/test/js/samples/export-from-accessors/expected.js index 15b0897b69..20b0524ca7 100644 --- a/test/js/samples/export-from-accessors/expected.js +++ b/test/js/samples/export-from-accessors/expected.js @@ -1,12 +1,12 @@ /* generated by Svelte vX.Y.Z */ import { SvelteComponent, init, safe_not_equal } from "svelte/internal"; -import { f as f_1, g as g_1 } from "./d"; -import { h as h_1 } from "./e"; -import { i as j } from "./f"; -export { d as e } from "./c"; -export { c } from "./b"; -export { a, b } from "./a"; +import { f as f_1, g as g_1 } from './d'; +import { h as h_1 } from './e'; +import { i as j } from './f'; +export { d as e } from './c'; +export { c } from './b'; +export { a, b } from './a'; class Component extends SvelteComponent { constructor(options) { diff --git a/test/js/samples/export-from/expected.js b/test/js/samples/export-from/expected.js index 9dc3188e5b..04fb47605f 100644 --- a/test/js/samples/export-from/expected.js +++ b/test/js/samples/export-from/expected.js @@ -1,12 +1,12 @@ /* generated by Svelte vX.Y.Z */ import { SvelteComponent, init, safe_not_equal } from "svelte/internal"; -import "./d"; -import "./e"; -import "./f"; -export { d as e } from "./c"; -export { c } from "./b"; -export { a, b } from "./a"; +import './d'; +import './e'; +import './f'; +export { d as e } from './c'; +export { c } from './b'; +export { a, b } from './a'; class Component extends SvelteComponent { constructor(options) { diff --git a/test/js/samples/non-imported-component/expected.js b/test/js/samples/non-imported-component/expected.js index 5a6b8e8bb7..e3f2760ce0 100644 --- a/test/js/samples/non-imported-component/expected.js +++ b/test/js/samples/non-imported-component/expected.js @@ -14,7 +14,7 @@ import { transition_out } from "svelte/internal"; -import Imported from "Imported.svelte"; +import Imported from 'Imported.svelte'; function create_fragment(ctx) { let imported; diff --git a/test/js/samples/reactive-class-optimized/expected.js b/test/js/samples/reactive-class-optimized/expected.js index c47a6e53a7..1d0606ad60 100644 --- a/test/js/samples/reactive-class-optimized/expected.js +++ b/test/js/samples/reactive-class-optimized/expected.js @@ -13,7 +13,7 @@ import { toggle_class } from "svelte/internal"; -import { reactiveStoreVal, unreactiveExport } from "./store"; +import { reactiveStoreVal, unreactiveExport } from './store'; function create_fragment(ctx) { let div0; diff --git a/test/js/samples/ssr-no-oncreate-etc/expected.js b/test/js/samples/ssr-no-oncreate-etc/expected.js index 8ca4a4906e..09ae6fd4a6 100644 --- a/test/js/samples/ssr-no-oncreate-etc/expected.js +++ b/test/js/samples/ssr-no-oncreate-etc/expected.js @@ -1,7 +1,7 @@ /* generated by Svelte vX.Y.Z */ import { create_ssr_component } from "svelte/internal"; -import { onDestroy, onMount } from "svelte"; +import { onDestroy, onMount } from 'svelte'; function preload(input) { return output; diff --git a/test/js/samples/transition-repeated-outro/expected.js b/test/js/samples/transition-repeated-outro/expected.js index b1992a16f0..a2cbedffea 100644 --- a/test/js/samples/transition-repeated-outro/expected.js +++ b/test/js/samples/transition-repeated-outro/expected.js @@ -14,7 +14,7 @@ import { transition_out } from "svelte/internal"; -import { fade } from "svelte/transition"; +import { fade } from 'svelte/transition'; function create_if_block(ctx) { let div; diff --git a/test/js/samples/unreferenced-state-not-invalidated/expected.js b/test/js/samples/unreferenced-state-not-invalidated/expected.js index 53044c7ed6..8c238a8397 100644 --- a/test/js/samples/unreferenced-state-not-invalidated/expected.js +++ b/test/js/samples/unreferenced-state-not-invalidated/expected.js @@ -12,7 +12,7 @@ import { text } from "svelte/internal"; -import { onMount } from "svelte"; +import { onMount } from 'svelte'; function create_fragment(ctx) { let p;