Packages

Give clients/browser an identifier that can be used to send messages to/from/between clients. In essence a pid.

Current section

Files

Jump to
gen_browser client rollup.config.js
Raw

client/rollup.config.js

import resolve from 'rollup-plugin-node-resolve';
export default {
input: 'lib/client.js',
output: {
file: 'dist/gen_browser.js',
format: 'umd',
name: 'GenBrowser'
},
plugins: [ resolve() ]
};