Skip to content

Commit 0746e27

Browse files
committed
tidy up
1 parent 41f662a commit 0746e27

File tree

6 files changed

+11
-7
lines changed

6 files changed

+11
-7
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# svelte-virtual-list changelog
22

3+
## 3.0.0
4+
5+
* Update for Svelte 3
6+
37
## 2.2.1
48

59
* Rename `viewportHeight` to `_viewportHeight`
File renamed without changes.

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{
22
"name": "@sveltejs/svelte-virtual-list",
3-
"version": "3.0.0-alpha.1",
3+
"version": "3.0.0",
44
"description": "A <VirtualList> component for Svelte apps",
5-
"main": "VirtualList.html",
6-
"svelte": "VirtualList.html",
5+
"main": "VirtualList.svelte",
6+
"svelte": "VirtualList.svelte",
77
"scripts": {
88
"build": "rollup -c",
99
"dev": "rollup -cw",
1010
"prepublishOnly": "npm test",
1111
"test": "node test/runner.js",
1212
"test:browser": "npm run build && serve test/public",
1313
"pretest": "npm run build",
14-
"lint": "eslint src/VirtualList.html"
14+
"lint": "eslint src/VirtualList.svelte"
1515
},
1616
"devDependencies": {
1717
"eslint": "^5.12.1",

test/src/App.html renamed to test/src/App.svelte

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<script>
2-
import VirtualList from '../../VirtualList.html';
3-
import Row from './Row.html';
2+
import VirtualList from '../../VirtualList.svelte';
3+
import Row from './Row.svelte';
44
55
export let items = [];
66
export let height = '100px';
File renamed without changes.

test/src/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import App from './App.html';
1+
import App from './App.svelte';
22
import { normalize, sleep } from './utils.js';
33
import { assert, test, done } from 'tape-modern';
44

0 commit comments

Comments
 (0)