Skip to content

Commit 31896f4

Browse files
author
James Goldie
committed
Fix terser import
1 parent 7d59e49 commit 31896f4

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

_extensions/sverto/rollup.config.js

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
1-
import svelte from 'rollup-plugin-svelte'
2-
import commonjs from '@rollup/plugin-commonjs'
3-
import resolve from '@rollup/plugin-node-resolve'
4-
import { terser } from 'rollup-plugin-terser'
1+
import svelte from "rollup-plugin-svelte"
2+
import commonjs from "@rollup/plugin-commonjs"
3+
import resolve from "@rollup/plugin-node-resolve"
4+
import terser from "@rollup/plugin-terser"
55

66
const path = require('node:path')
77

88
// this is false when we run rollup with -w/--watch (never presently)
99
const production = !process.env.ROLLUP_WATCH;
1010

11-
1211
/* export an array of rollup configs - one for each input svelte file - using
1312
additional command line args supplied from lua */
1413
export default cmd => {

0 commit comments

Comments
 (0)