-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.mjs
99 lines (81 loc) · 2.18 KB
/
build.mjs
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
import lr from 'tiny-lr'
import chokidar from 'chokidar'
import { promises as fs } from 'fs'
import javascript from './transformer/javascript.mjs'
import pug from './transformer/pug.mjs'
import stylus from './transformer/stylus.mjs'
import zip from './transformer/zip.mjs'
const PRODUCTION = process.env.NODE_ENV === 'production'
if (!PRODUCTION) {
const sendFile = async (res, file) => {
try {
res.write(await fs.readFile(file))
} catch {
res.write('No build generated')
}
}
const server = lr()
server.on(`GET /public/`, async (req, res) => {
await sendFile(res, 'public/index.html')
res.end()
})
for (const file of ['main.css', 'main.js']) {
server.on(`GET /public/${file}`, async (req, res) => {
await sendFile(res, `public/${file}`)
res.end()
})
server.on(`GET /public/${file}.map`, async (req, res) => {
await sendFile(res, `public/${file}.map`)
res.end()
})
}
Promise.resolve().then(async () => {
try {
await fs.mkdir('public/')
} catch {}
server.listen(8080)
chokidar.watch('src').on('all', async (event, path) => {
if (~event.indexOf('Dir')) {
return
}
try {
switch (path.slice(path.lastIndexOf('.'))) {
case '.js':
await javascript(PRODUCTION)
console.log('@', path)
break
case '.pug':
await pug(PRODUCTION)
console.log('@', path)
break
case '.styl':
await stylus(PRODUCTION)
console.log('@', path)
break
}
} catch (err) {
console.error(err.message || err)
}
})
// dist file watcher
chokidar.watch('public').on('all', (event, path) => {
if (~event.indexOf('Dir')) {
return
}
const file = path.slice(7)
server.changed({ body: { files: [file] } })
})
})
} else {
Promise.resolve().then(async () => {
try {
await fs.mkdir('public/')
} catch {}
await Promise.all([
await javascript(PRODUCTION),
await stylus(PRODUCTION),
await pug(PRODUCTION)
])
return zip()
}).catch(err => console.error(err))
}