2 Star 15 Fork 2

Augly / wx-charts

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
rollup.config.prod.js 461 Bytes
一键复制 编辑 原始数据 按行查看 历史
import babel from 'rollup-plugin-babel';
import uglify from 'rollup-plugin-uglify';
let banner = `/*
* charts for WeChat small app v1.0
*
* https://github.com/xiaolin3303/wx-charts
* 2016-11-28
*
* Designed and built with all the love of Web
*/
`;
export default {
entry: 'src/app.js',
format: 'cjs',
dest: 'dist/wxcharts-min.js',
plugins: [
babel({
exclude: 'node_modules/**',
}),
uglify()
],
banner: banner
};
JavaScript
1
https://gitee.com/Q_Augly/wx-charts.git
git@gitee.com:Q_Augly/wx-charts.git
Q_Augly
wx-charts
wx-charts
master

搜索帮助