2 Star 5 Fork 3

K. / string-utils.js

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
rollup.config.js 464 Bytes
一键复制 编辑 原始数据 按行查看 历史
K. 提交于 2020-12-09 23:36 . chore: 恢复 rollup 构建
import babel from 'rollup-plugin-babel';
import resolve from 'rollup-plugin-node-resolve';
import commonjs from 'rollup-plugin-commonjs';
export default [
{
input: 'index.es.js',
output: [
{file: 'index.js', format: 'cjs', sourcemap: true},
],
plugins: [
resolve({}),
commonjs(),
babel({
presets: [
[
'@babel/preset-env',
{
useBuiltIns: false
}
]
],
exclude: 'node_modules/**'
})
]
}
];
JavaScript
1
https://gitee.com/janpoem/string-utils.js.git
git@gitee.com:janpoem/string-utils.js.git
janpoem
string-utils.js
string-utils.js
master

搜索帮助