50 lines
1.2 KiB
JavaScript
50 lines
1.2 KiB
JavaScript
import nodeResolve from 'rollup-plugin-node-resolve';
|
|
import babel from 'rollup-plugin-babel';
|
|
import memory from 'rollup-plugin-memory';
|
|
|
|
const license = require('rollup-plugin-license');
|
|
const pkg = require('../package.json');
|
|
const licensePlugin = license({
|
|
banner: " omi v" + pkg.version + " http://omijs.org\r\nOmi === Preact + Scoped CSS + Store System + Native Support in 3kb javascript.\r\nBy dntzhang https://github.com/dntzhang \r\n Github: https://github.com/AlloyTeam/omi\r\n MIT Licensed."
|
|
})
|
|
|
|
export default {
|
|
input: 'src/omi.js',
|
|
output: {
|
|
format: 'iife',
|
|
file: 'dist/omi.dev.js',
|
|
name: 'omi',
|
|
sourcemap: true,
|
|
strict: true
|
|
},
|
|
plugins: [
|
|
memory({
|
|
path: 'src/omi.js',
|
|
contents: `
|
|
import Omi from './omi';
|
|
if (typeof module!='undefined') module.exports = Omi;
|
|
else self.Omi = Omi;
|
|
`
|
|
}),
|
|
nodeResolve({
|
|
main: true
|
|
}),
|
|
babel({
|
|
sourceMap: true,
|
|
exclude: 'node_modules/**',
|
|
babelrc: false,
|
|
presets: [
|
|
['env', {
|
|
modules: false,
|
|
loose: true,
|
|
exclude: ['transform-es2015-typeof-symbol'],
|
|
targets: {
|
|
browsers: ['last 2 versions', 'IE >= 9']
|
|
}
|
|
}]
|
|
]
|
|
}),
|
|
licensePlugin
|
|
]
|
|
};
|