-
Notifications
You must be signed in to change notification settings - Fork 67
/
vite.config.ts
47 lines (43 loc) · 1 KB
/
vite.config.ts
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
import { resolve } from 'node:path'
import { defineConfig } from 'vite'
import pkg from './package.json' with { type: 'json' }
const buildDate = Date()
const headerLong = `/*!
* ${pkg.name} - ${pkg.description}
* @version ${pkg.version}
* ${pkg.homepage}
*
* @copyright ${pkg.author}
* @license ${pkg.license}
*
* BUILT: ${buildDate}
*/;`
const headerShort = `/*! ${pkg.name} v${pkg.version} ${pkg.license}*/;`
export default defineConfig({
build: {
sourcemap: true,
lib: {
entry: resolve('./src/main.js'),
name: 'svg.resize.js',
fileName: 'svg.resize',
formats: ['iife', 'es', 'umd'],
},
rollupOptions: {
external: ['@svgdotjs/svg.js', '@svgdotjs/svg.select.js'],
output: {
globals: {
'@svgdotjs/svg.js': 'SVG',
},
banner: headerLong,
assetFileNames: 'svg.resize.[ext]',
},
},
minify: 'terser',
terserOptions: {
output: {
preamble: headerShort,
comments: false,
},
},
},
})