You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hotkeys/scripts/watch.js

35 lines
1.1 KiB
JavaScript

const path = require('path');
const rollup = require('rollup');
const pkg = require('../package.json');
require('colors-cli/toxic');
const watchOptions = {
input: 'src/main.js',
output: [
{ file: 'dist/hotkeys.common.js', name: 'hotkeys', format: 'cjs' },
{ file: 'dist/hotkeys.js', name: 'hotkeys', format: 'umd' }
]
};
const watcher = rollup.watch(watchOptions);
watcher.on('event', event => {
// event.code can be one of:
// START — the watcher is (re)starting
// BUNDLE_START — building an individual bundle
// BUNDLE_END — finished building a bundle
// END — finished building all bundles
// ERROR — encountered an error while bundling
// FATAL — encountered an unrecoverable error
if (event.code === 'BUNDLE_END') {
event.output.map(function (item) {
console.log('bundles '.x39 + `${event.input}${item.replace(process.cwd() + path.sep, '')}`.blue_bt);
})
console.log(`duration ${event.duration}ms\n`.green)
} else if (event.code === 'END') {
console.log('waiting for changes... ');
}
});
// stop watching
// watcher.close();