mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-30 02:58:05 +08:00
75 lines
1.8 KiB
JavaScript
75 lines
1.8 KiB
JavaScript
// rollup.config.js
|
|
import commonjs from '@rollup/plugin-commonjs';
|
|
import json from '@rollup/plugin-json';
|
|
import resolve from '@rollup/plugin-node-resolve';
|
|
import typescript from '@rollup/plugin-typescript';
|
|
import {terser} from 'rollup-plugin-terser';
|
|
import license from 'rollup-plugin-license';
|
|
import {name, version, main, author, dependencies} from './package.json';
|
|
|
|
const isForLib = process.env.IS_LIB || false;
|
|
|
|
const settings = {
|
|
globals: {}
|
|
};
|
|
|
|
const external = id =>
|
|
new RegExp(
|
|
`^(?:${Object.keys(dependencies)
|
|
.concat([])
|
|
.map(value =>
|
|
value.replace(/[|\\{}()[\]^$+*?.]/g, '\\$&').replace(/-/g, '\\x2d')
|
|
)
|
|
.join('|')})`
|
|
).test(id);
|
|
|
|
export default {
|
|
input: isForLib ? './scripts/lib.ts' : './src/index.ts',
|
|
output: [
|
|
{
|
|
file: isForLib ? 'lib/formula.js' : main,
|
|
name: isForLib ? 'formula' : main,
|
|
...settings,
|
|
format: isForLib ? 'iife' : 'cjs',
|
|
plugins: [isForLib && terser()],
|
|
strict: !isForLib,
|
|
footer: isForLib
|
|
? `var evaluate = formula.evaluate;
|
|
var momentFormat = formula.momentFormat;
|
|
var parse = formula.parse;`
|
|
: ''
|
|
}
|
|
],
|
|
external: isForLib ? [] : external,
|
|
|
|
plugins: [
|
|
json(),
|
|
resolve({
|
|
jsnext: true,
|
|
main: true,
|
|
browser: true
|
|
}),
|
|
typescript({
|
|
typescript: require('typescript'),
|
|
sourceMap: false,
|
|
outputToFilesystem: true
|
|
}),
|
|
commonjs(
|
|
isForLib
|
|
? {}
|
|
: {
|
|
include: 'node_modules/**',
|
|
extensions: ['.js'],
|
|
ignoreGlobal: false,
|
|
sourceMap: false
|
|
}
|
|
),
|
|
license({
|
|
banner: `
|
|
${name} v${version}
|
|
Copyright 2021<%= moment().format('YYYY') > 2021 ? '-' + moment().format('YYYY') : null %> ${author}
|
|
`
|
|
})
|
|
]
|
|
};
|