riot-test-utils
Version:
lightweight testing utility of Riot
21 lines (19 loc) • 370 B
JavaScript
import baseConfig from './rollup.config.js';
export default Object.assign(
{},
baseConfig,
{
external: [
'riot',
// "riot-shallowize", "simulate-event" and "lodash/*" are bundled
],
output: {
file: 'dist/index.umd.js',
format: 'umd',
name: 'RiotTestUtils',
globals: {
'riot': 'riot',
},
}
},
);