Skip to content

Commit 687e352

Browse files
committed
rename .html files to .svelte
1 parent da11d75 commit 687e352

File tree

1,214 files changed

+278
-279
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,214 files changed

+278
-279
lines changed
File renamed without changes.
File renamed without changes.

test/cli/samples/dir-sourcemap/src/Main.html

-5
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<script>
2+
import Widget from './Widget.svelte';
3+
</script>
4+
5+
<Widget/>

test/cli/samples/dir-subdir/src/Main.html

-5
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<script>
2+
import Widget from './widget/Widget.svelte';
3+
</script>
4+
5+
<Widget/>

test/cli/samples/dir/src/Main.html

-5
This file was deleted.

test/cli/samples/dir/src/Main.svelte

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<script>
2+
import Widget from './Widget.svelte';
3+
</script>
4+
5+
<Widget/>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

test/custom-elements/samples/nested.skip/main.html test/custom-elements/samples/nested.skip/main.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<svelte:options tag="my-app"/>
22

33
<script>
4-
import Counter from './Counter.html';
4+
import Counter from './Counter.svelte';
55
66
export let count;
77
</script>

test/custom-elements/samples/props/main.html test/custom-elements/samples/props/main.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<svelte:options tag="custom-element"/>
22

33
<script>
4-
import './my-widget.html';
4+
import './my-widget.svelte';
55
66
export let items = ['a', 'b', 'c'];
77
</script>

test/hydration/samples/component-in-element/main.html test/hydration/samples/component-in-element/main.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<script>
2-
import Nested from './Nested.html';
2+
import Nested from './Nested.svelte';
33
</script>
44

55
<div>

test/hydration/samples/component/main.html

-5
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<script>
2+
import Nested from './Nested.svelte';
3+
</script>
4+
5+
<Nested/>
File renamed without changes.
File renamed without changes.
File renamed without changes.

test/js/samples/dynamic-import/input.html

-5
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<script>
2+
import LazyLoad from './LazyLoad.svelte';
3+
</script>
4+
5+
<LazyLoad load="{() => import('./Foo.svelte')}"/>

test/js/samples/non-imported-component/input.html test/js/samples/non-imported-component/input.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<script>
2-
import Imported from 'Imported.html';
2+
import Imported from 'Imported.svelte';
33
</script>
44

55
<Imported/>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)