-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
58 lines (56 loc) · 1.7 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
48
49
50
51
52
53
54
55
56
57
58
import { defineConfig } from 'vite';
import vuePlugin from '@vitejs/plugin-vue';
import { resolve } from 'path';
import { RootNode, TemplateChildNode } from '@vue/compiler-core';
function removeDevelopmentVueNodeAttributes(node: RootNode | TemplateChildNode) {
const attributesToRemove = [
'data-test',
':data-test',
'v-bind:data-test'
];
if (node.type === 1) { // ELEMENT
node.props = node.props.filter(function (prop) {
if (prop.type === 6) { // ATTRIBUTE
const attributeName = prop.name;
return !attributesToRemove.includes(attributeName);
}
if (prop.name === 'bind' && prop.arg.type === 4) { // SIMPLE_EXPRESSION
const attributeName = prop.arg?.content;
return !attributesToRemove.includes(attributeName);
}
return true;
});
}
}
export default defineConfig({
plugins: [
vuePlugin({
template: {
compilerOptions: {
nodeTransforms: [removeDevelopmentVueNodeAttributes]
}
}
})
],
build: {
lib: {
entry: resolve(__dirname, 'src/index.ts'),
name: '@iplsplatoon/vue-components',
fileName: 'index',
formats: ['es', 'umd']
},
rollupOptions: {
external: [
'vue',
'@fortawesome/fontawesome-svg-core',
'@fortawesome/free-solid-svg-icons',
'@fortawesome/vue-fontawesome'
],
output: {
globals: {
vue: 'Vue'
}
}
}
}
});