windows95/tools/parcel-watch.js

12 lines
207 B
JavaScript
Raw Permalink Normal View History

2019-08-21 09:48:49 +02:00
const { compileParcel } = require('./parcel-build')
async function watchParcel () {
return compileParcel({ watch: true })
}
module.exports = {
watchParcel
}
if (require.main === module) watchParcel()