-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
99 lines (92 loc) · 2.13 KB
/
rollup.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
import babel from 'rollup-plugin-babel'
import eslint from 'rollup-plugin-eslint'
import resolve from 'rollup-plugin-node-resolve'
import commonjs from 'rollup-plugin-commonjs'
import { terser } from 'rollup-plugin-terser'
import typescript from 'rollup-plugin-typescript'
import replace from 'rollup-plugin-replace'
import path from 'path'
import dotenv from 'dotenv'
// 加载.env文件
dotenv.config()
// 判断是否开发环境
const isDev = process.env.NODE_ENV === 'development'
// 根据环境加载对应的.env.xx文件
dotenv.config({
override: true,
path: path.join(__dirname, isDev ? '.env.development' : '.env.production')
})
const pathResolve = p => path.join(__dirname, p)
function changePath() {
return {
name: 'changePath',
transform: function transform(code, id) {
code = code
.replace(/\$ANS/g, process.env.ANS)
.replace(/\$LIB/g, process.env.LIB)
.replace(/\$LibVERSION/g, process.env.LibVERSION)
return {
code: code,
id: id,
}
},
}
}
function getPlugins () {
return [
changePath(),
typescript(),
resolve({
jsnext: true,
main: true,
browser: true,
}),
commonjs(),
eslint({
exclude: ['src/**'],
}),
babel({
exclude: 'node_modules/**',
}),
!isDev && terser({
mangle: {
toplevel: true,
},
})
]
}
export default [{
input: './src/index.ts',
output: [{
file: './demo/demo/sdk/AnalysysAgent_FS_SDK.min.js',
format: 'cjs',
name: 'Ans'
}, {
file: './dist/AnalysysAgent_FS_SDK.min.js',
format: 'cjs',
name: 'Ans'
}, {
file: './demo/demo/sdk/AnalysysAgent_FS_SDK.es6.min.js',
format: 'esm',
name: 'Ans'
}, {
file: './dist/AnalysysAgent_FS_SDK.es6.min.js',
format: 'esm',
name: 'Ans'
}],
plugins: getPlugins(),
sourceMap: true,
}, {
input: './src/indexCustom.ts',
output: [{
file: './dist/AnalysysAgent_FS_SDK.custom.min.js',
format: 'cjs',
name: 'Ans'
}, {
file: './dist/AnalysysAgent_FS_SDK.custom.es6.min.js',
format: 'esm',
name: 'Ans'
}],
plugins: getPlugins(),
sourceMap: true
}]