-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfuse.js
90 lines (79 loc) · 2.19 KB
/
fuse.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
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
const {
FuseBox,
SassPlugin,
CSSPlugin,
SVGPlugin,
JSONPlugin,
WebIndexPlugin,
Sparky,
QuantumPlugin,
EnvPlugin,
} = require('fuse-box')
const express = require('express')
const path = require('path')
const {spawn} = require('child_process')
const TypeHelper = require('fuse-box-typechecker').TypeHelper
let fuse, app, vendor
let ENV = 'development'
const setupServer = server => {
const app = server.httpServer.app
app.use('/assets/', express.static(path.join(__dirname, 'assets')))
}
Sparky.task('config', () => {
fuse = FuseBox.init({
homeDir: 'app/',
output: 'dist/$name.js',
tsConfig : 'tsconfig.json',
experimentalFeatures: true,
useTypescriptCompiler: true,
sourceMaps: ENV === 'development' ? { project: true, vendor: true } : false,
cache: ENV === 'development',
debug: true,
log: true,
plugins: [
SVGPlugin(),
CSSPlugin(),
JSONPlugin(),
EnvPlugin({ ENV }),
ENV === 'production' && QuantumPlugin({
treeshake: true,
uglify: true,
}),
WebIndexPlugin({
path: '.',
template: 'app/index.html',
}),
],
})
// vendor
vendor = fuse.bundle('vendor').instructions('~ index.ts')
// bundle app
app = fuse.bundle('app').instructions('> [index.ts]')
})
// main task
Sparky.task('default', ['clean', 'config', 'copy-assets'], () => {
fuse.dev({ port: 3000 }, setupServer)
let typeHelper = TypeHelper({
tsConfig: './tsconfig.json',
basePath:'.',
name: 'App typechecker',
})
app.watch().hmr().completed(proc => {
console.log(`\x1b[36m%s\x1b[0m`, `client bundled`)
typeHelper.runSync()
})
return fuse.run()
})
// wipe it all
Sparky.task('clean', () => Sparky.src('dist/*').clean('dist/'))
// wipe it all from .fusebox - cache dir
Sparky.task('clean-cache', () => Sparky.src('.fusebox/*').clean('.fusebox/'))
Sparky.task('copy-assets', () => {
return Sparky.src('assets/').watch('assets/').dest('dist/$name')
})
// prod build
Sparky.task('set-production-env', () => ENV = 'production')
Sparky.task('dist', ['clean', 'clean-cache', 'set-production-env', 'config', 'copy-assets'], () => {
fuse.dev({ port: 3000 }, setupServer)
return fuse.run()
})