-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.js
36 lines (35 loc) · 1.12 KB
/
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
31
32
33
34
35
36
import { resolve } from 'path';
import { defineConfig } from 'vite';
import banner from 'vite-plugin-banner';
import postcssNesting from 'postcss-nesting';
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
),
],
css: {
postcss: {
plugins: [postcssNesting],
},
},
build: {
lib: {
entry: resolve(__dirname, 'src/index.js'),
name: 'BeforeAfter',
formats: ['es', 'umd', 'iife'],
fileName: (format) => `index.${format === 'iife' ? 'min' : format}.js`,
},
},
});