加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
rollup.config.js 866 Bytes
一键复制 编辑 原始数据 按行查看 历史
syt123450 提交于 2018-02-14 23:39 . update gio build folder for release
/**
* Created by ss on 2018/1/7.
*/
export default [
{
input: 'src/Gio.js',
output: [
{
format: 'iife',
file: 'build/gio.js',
name: "GIO"
}
]
}, {
input: 'src/Gio.js',
output: [
{
format: 'umd',
file: 'build/gio.module.js',
name: "GIO"
}
],
intro: 'global.THREE = require("three");'
}, {
input: 'src/Gio.js',
output: [
{
file: 'build/gio.react.js',
name: "GIO",
format: 'es'
}
],
intro: 'import * as THREE from "three";\n import Stats from "stats.js";\n window.THREE = THREE;'
}
];
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化