Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
GenieTim committed Oct 29, 2023
1 parent 0c4d12e commit 4a589c2
Show file tree
Hide file tree
Showing 5 changed files with 713 additions and 334 deletions.
16 changes: 8 additions & 8 deletions example-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,24 @@
"name": "svelte-virtual-table-example-app",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"start": "sirv public --no-clear"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.0",
"rollup": "^2.3.4",
"rollup-plugin-css-only": "^3.1.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"rollup": "^4.1.5",
"rollup-plugin-svelte": "^7.1.6",
"rollup-plugin-css-only": "^4.3.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-svelte": "^7.0.0",
"rollup-plugin-terser": "^7.0.0",
"svelte": "^3.0.0"
"svelte": "^4.2.2"
},
"dependencies": {
"generator-sort": "^1.0.0",
"sirv-cli": "^1.0.0",
"sirv-cli": "^2.0.2",
"svelte-virtual-table": "^1.0.0"
}
}
7 changes: 4 additions & 3 deletions example-app/rollup.config.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import svelte from 'rollup-plugin-svelte';
import commonjs from '@rollup/plugin-commonjs';
import resolve from '@rollup/plugin-node-resolve';
import * as child_process from 'child_process';
import css from 'rollup-plugin-css-only';
import livereload from 'rollup-plugin-livereload';
import svelte from 'rollup-plugin-svelte';
import { terser } from 'rollup-plugin-terser';
import css from 'rollup-plugin-css-only';

const production = !process.env.ROLLUP_WATCH;

Expand All @@ -17,7 +18,7 @@ function serve() {
return {
writeBundle() {
if (server) return;
server = require('child_process').spawn('npm', ['run', 'start', '--', '--dev'], {
server = child_process.spawn('npm', ['run', 'start', '--', '--dev'], {
stdio: ['ignore', 'inherit', 'inherit'],
shell: true
});
Expand Down
Loading

0 comments on commit 4a589c2

Please sign in to comment.