-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrollup.test.config.js
53 lines (51 loc) · 1.23 KB
/
rollup.test.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import resolve from '@rollup/plugin-node-resolve'
import commonjs from '@rollup/plugin-commonjs'
import multi from '@rollup/plugin-multi-entry'
import svelte from 'rollup-plugin-svelte'
import sveltePreprocess from 'svelte-preprocess'
import typescript from '@rollup/plugin-typescript'
import css from 'rollup-plugin-css-only'
const preprocessOptions = require('./svelte.config').preprocessOptions
const production = !process.env.ROLLUP_WATCH
export default {
input: 'spec/**/*.spec.ts',
output: {
sourcemap: true,
format: 'cjs',
name: 'tests',
file: 'build/bundle-tests.js'
},
plugins: [
multi(),
svelte({
preprocess: sveltePreprocess({
...preprocessOptions
}),
compilerOptions: {
dev: !production
}
}),
css({ output: 'bundle.css' }),
resolve({
browser: true,
dedupe: ['svelte']
}),
commonjs(),
typescript({
sourceMap: !production,
inlineSources: !production
})
],
onwarn (warning, warn) {
if (warning.code === 'UNRESOLVED_IMPORT') return
warn(warning)
},
external: [
'canvas-prebuilt',
'canvas',
'jsdom/lib/jsdom/utils',
'jsdom/lib/jsdom/living/generated/utils',
'jsdom',
'xmldom'
]
}