This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/doric-web/rollup.config.js

48 lines
1.4 KiB
JavaScript
Raw Normal View History

2019-12-23 10:41:18 +08:00
import resolve from '@rollup/plugin-node-resolve'
import commonjs from '@rollup/plugin-commonjs'
import jsonPlugin from '@rollup/plugin-json'
2019-12-19 10:42:57 +08:00
import fs from 'fs'
import path from 'path'
const sandboxBundle = fs.readFileSync(path.resolve("./node_modules/doric/bundle/doric-sandbox.js"), 'utf-8')
const doricLibBundle = fs.readFileSync(path.resolve("./node_modules/doric/bundle/doric-lib.js"), 'utf-8')
2019-12-19 10:58:46 +08:00
const builtinScript = `
/**++++++++SandBox++++++++*/
${sandboxBundle}
/**--------SandBox--------*/
/**++++++++Lib++++++++*/
2019-12-19 13:07:33 +08:00
Reflect.apply(doric.jsRegisterModule,this,["doric",Reflect.apply(function(__module){(function(module,exports,require){
2019-12-19 10:58:46 +08:00
${doricLibBundle}
})(__module,__module.exports,doric.__require__);
return __module.exports;
},this,[{exports:{}}])]);
/**--------Lib--------*/
`
2019-12-19 10:42:57 +08:00
export default {
input: `build/index.js`,
output: {
format: "iife",
2020-01-03 16:35:04 +08:00
name: "doric_web",
2019-12-19 10:42:57 +08:00
file: `dist/index.js`,
sourcemap: true,
2019-12-19 10:58:46 +08:00
banner: builtinScript,
2019-12-19 10:42:57 +08:00
globals: {
doric: "doric_lib",
'doric/src/runtime/sandbox': 'doric',
},
},
plugins: [
resolve({ mainFields: ["jsnext"] }),
commonjs(),
jsonPlugin(),
],
external: ['axios', 'reflect-metadata', 'doric'],
onwarn: function (warning) {
if (warning.code === 'THIS_IS_UNDEFINED') { return; }
console.warn(warning.message);
},
}