-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathparcel.js
42 lines (27 loc) · 788 Bytes
/
parcel.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// Bring in Gulp
const gulp = require("gulp");
require("./gulpfile.js");
// Setup Parcel
const Bundler = require("parcel-bundler");
const Path = require("path");
// Setup our Web Server
const app = require("express")();
async function runBundle() {
const entryFiles = Path.join(__dirname, "./index.html");
const options = {
detailedReport: true
};
const bundler = new Bundler(entryFiles, options);;
// When it finishes bundling, run our gulp steps
bundler.on("bundled", async (bundle) => {
gulp.task("default")();
});
bundler.on("buildStart", () => {
});
bundler.on("buildEnd", () => {
});
app.use(bundler.middleware());
console.info(`Served: 127.0.0.1:1234`);
app.listen(1234);
}
runBundle();