fregante / GhostText

👻 Use your text editor to write in your browser. Everything you type in the editor will be instantly updated in the browser (and vice versa).
https://GhostText.fregante.com
MIT License
3.28k stars 117 forks source link

Test, disregard #101

Closed fregante closed 7 years ago

fregante commented 7 years ago
const rollup = require('gulp-rollup');
const resolve = require('rollup-plugin-node-resolve');

gulp.task('rollup', function () {
return gulp.src('_01_src/js/form/*.js')
.pipe(rollup({
entry: '_01_src/js/form/controller.js',
format: 'iife',
plugins: [
resolve({
jsnext: true,
main: true,
browser: true
})
]
})
)

    .pipe(gulp.dest('_02_build/js/'));

});