UNPKG
test-semantic-lds
Version:
latest (1.5.4)
1.5.4
1.5.3
1.5.2
1.5.1
1.4.3
1.4.2
1.4.1
1.3.2
1.3.1
1.3.0
1.2.0
测试一下semantic
test-semantic-lds
/
rollup.config.js
12 lines
•
246 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import { terser }
from
"rollup-plugin-terser"; export default {
input
:
'./src/index.js'
, output: { file:
'./dist/test.js'
, format:
'umd'
, name:
'oblinkJsSdk'
}, plugins: [
terser
({ compress: { drop_console: true } }) ] };