2
0
mirror of https://github.com/frappe/books.git synced 2025-02-14 17:56:34 +00:00
books/config/rollup.config.app.js

18 lines
513 B
JavaScript
Raw Normal View History

2018-01-30 17:33:04 +05:30
module.exports = {
2018-03-26 17:48:07 +05:30
input: './www/index.js',
2018-02-21 15:13:21 +05:30
output: {
2018-03-26 17:48:07 +05:30
file: './www/dist/js/bundle.js',
2018-02-21 15:13:21 +05:30
format: 'iife',
name: 'desk',
sourcemap: true,
globals: ['io', 'nunjucks'], // for socketio client, which is imported directly,
2018-02-21 15:13:21 +05:30
},
plugins: [
require('rollup-plugin-commonjs')(),
require('rollup-plugin-json')(),
require('rollup-plugin-html')(),
2018-02-21 15:13:21 +05:30
require('rollup-plugin-node-resolve')({
preferBuiltins: true
}),
],
2018-02-19 22:11:10 +05:30
}