-
Notifications
You must be signed in to change notification settings - Fork 3
/
fuse.js
53 lines (52 loc) · 1.4 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
const {
FuseBox,
Sparky,
EnvPlugin,
CSSPlugin,
WebIndexPlugin,
QuantumPlugin,
} = require('fuse-box')
// const transformInferno = require('../../dist').default
const transformInferno = require('ts-transform-inferno').default
const transformClasscat = require('ts-transform-classcat').default
let fuse, app
let isProduction = false
Sparky.task('config', _ => {
fuse = new FuseBox({
homeDir: 'src',
hash: isProduction,
output: 'dist/$name.js',
experimentalFeatures: true,
cache: !isProduction,
sourceMaps: !isProduction,
transformers: {
before: [transformClasscat(), transformInferno()],
},
plugins: [
EnvPlugin({ NODE_ENV: isProduction ? 'production' : 'development' }),
CSSPlugin(),
WebIndexPlugin({
title: 'Inferno Typescript FuseBox Example',
template: 'src/index.html',
}),
isProduction &&
QuantumPlugin({
bakeApiIntoBundle: 'app',
treeshake: true,
uglify: true,
}),
],
})
app = fuse.bundle('app').instructions('>index.tsx')
})
Sparky.task('clean', _ => Sparky.src('dist/').clean('dist/'))
Sparky.task('env', _ => (isProduction = true))
Sparky.task('dev', ['clean', 'config'], _ => {
fuse.dev()
app.hmr().watch()
return fuse.run()
})
Sparky.task('prod', ['clean', 'env', 'config'], _ => {
// fuse.dev({ reload: true }) // remove after demo
return fuse.run()
})