windows95/tools/parcel-watch.js
2019-08-21 09:48:49 +02:00

12 lines
207 B
JavaScript

const { compileParcel } = require('./parcel-build')
async function watchParcel () {
return compileParcel({ watch: true })
}
module.exports = {
watchParcel
}
if (require.main === module) watchParcel()