forked from hubblecommerce/hubble-frontend-pwa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.config.ts
53 lines (52 loc) · 1.44 KB
/
build.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
import { defineBuildConfig } from 'unbuild'
import copy from 'rollup-plugin-copy'
export default defineBuildConfig({
hooks: {
'rollup:options': (ctx, options) => {
// @ts-ignore
options.plugins.push(
copy({
targets: [
{
src: ['./src/theme/', './src/commons/'],
dest: './dist'
},
{
src: ['./src/platforms/shopware/composables/', './src/platforms/shopware/utils/'],
dest: './dist/platforms/shopware'
}
]
})
)
}
},
rollup: {
cjsBridge: true
},
entries: [
// Module
'./src/module',
// Shopware
{
input: './src/platforms/shopware/api-client/',
outDir: './dist/platforms/shopware/api-client',
declaration: true
},
{
input: './src/platforms/shopware/bin/',
outDir: './dist/platforms/shopware/bin',
declaration: false,
ext: 'js'
},
{
builder: 'mkdist',
input: './src/platforms/shopware/config/',
outDir: './dist/platforms/shopware/config'
}
],
externals: [
'chokidar',
'fs-extra',
'defu'
]
})