project config
This commit is contained in:
32
js-framework/rollup.config.js
Normal file
32
js-framework/rollup.config.js
Normal file
@@ -0,0 +1,32 @@
|
||||
const path = require('path')
|
||||
const fs = require('fs')
|
||||
import resolve from 'rollup-plugin-node-resolve'
|
||||
import commonjs from 'rollup-plugin-commonjs'
|
||||
|
||||
export default [
|
||||
{
|
||||
input: "build/index.runtime.js",
|
||||
output: {
|
||||
name: "hego",
|
||||
format: "iife",
|
||||
file: "bundle/sandbox.js",
|
||||
},
|
||||
sourceMap: true,
|
||||
plugins: [
|
||||
resolve({ jsnext: true, main: true }),
|
||||
// commonjs()
|
||||
]
|
||||
},
|
||||
{
|
||||
input: "build/index.js",
|
||||
output: {
|
||||
format: "cjs",
|
||||
file: "bundle/bundle.js",
|
||||
},
|
||||
sourceMap: true,
|
||||
plugins: [
|
||||
resolve({ jsnext: true, main: true }),
|
||||
commonjs()
|
||||
]
|
||||
},
|
||||
]
|
||||
Reference in New Issue
Block a user