-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.js
30 lines (29 loc) · 1006 Bytes
/
vite.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
import { resolve } from 'path';
import { defineConfig } from 'vite';
import banner from 'vite-plugin-banner';
import { name, version, description, author, homepage, license } from './package.json';
export default defineConfig({
plugins: [
banner((fileName) =>
fileName.match(/\.js$/)
? [
'/**',
` * name: ${name}@${version}`,
` * desc: ${description}`,
` * author: ${author.name} <${author.email}> [${author.url}]`,
` * homepage: ${homepage}`,
` * license: ${license}`,
' */',
].join('\n')
: null
),
],
build: {
lib: {
entry: resolve(__dirname, 'src/index.js'),
name: 'ArcBall',
formats: ['es', 'umd', 'iife'],
fileName: (format) => `index.${format === 'iife' ? 'min' : format}.js`,
},
},
});