2019-12-04 14:15:05 +08:00
|
|
|
const path = require('path')
|
|
|
|
const fs = require('fs')
|
2019-12-20 11:18:23 +08:00
|
|
|
import resolve from '@rollup/plugin-node-resolve'
|
2019-12-04 14:15:05 +08:00
|
|
|
|
|
|
|
export default [
|
|
|
|
{
|
2020-01-03 14:44:51 +08:00
|
|
|
input: "lib/index.runtime.js",
|
2019-12-04 14:15:05 +08:00
|
|
|
output: {
|
|
|
|
name: "doric",
|
|
|
|
format: "iife",
|
|
|
|
file: "bundle/doric-sandbox.js",
|
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
resolve({ mainFields: ["jsnext"] }),
|
|
|
|
],
|
2020-01-03 14:44:51 +08:00
|
|
|
onwarn: function (warning) {
|
|
|
|
if (warning.code === 'THIS_IS_UNDEFINED') { return; }
|
|
|
|
console.warn(warning.message);
|
2019-12-04 14:15:05 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
2020-01-03 14:44:51 +08:00
|
|
|
input: "lib/index.js",
|
2019-12-04 14:15:05 +08:00
|
|
|
output: {
|
|
|
|
format: "cjs",
|
|
|
|
file: "bundle/doric-lib.js",
|
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
resolve({ mainFields: ["jsnext"] }),
|
|
|
|
],
|
|
|
|
external: ['reflect-metadata'],
|
2020-01-03 14:44:51 +08:00
|
|
|
onwarn: function (warning) {
|
|
|
|
if (warning.code === 'THIS_IS_UNDEFINED') { return; }
|
|
|
|
console.warn(warning.message);
|
2019-12-04 14:15:05 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
2020-01-03 14:44:51 +08:00
|
|
|
input: "lib/index.debug.js",
|
2019-12-04 14:15:05 +08:00
|
|
|
output: {
|
|
|
|
format: "cjs",
|
|
|
|
file: "bundle/doric-vm.js",
|
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
resolve({ mainFields: ["jsnext"] }),
|
|
|
|
],
|
|
|
|
external: ['ws'],
|
2020-01-03 14:44:51 +08:00
|
|
|
onwarn: function (warning) {
|
|
|
|
if (warning.code === 'THIS_IS_UNDEFINED') { return; }
|
|
|
|
console.warn(warning.message);
|
2019-12-04 14:15:05 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
]
|