UNPKG
sugo-scaffold
Version:
latest (3.0.12)
3.0.12
3.0.11
3.0.10
3.0.9
3.0.8
3.0.7
3.0.6
3.0.5
3.0.4
3.0.3
3.0.1
3.0.0
Scaffold generator for SUGOS
github.com/realglobe-Inc/sugo-scaffold
realglobe-inc/sugo-scaffold
sugo-scaffold
/
ci
/
build.js
22 lines
(16 loc)
•
305 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env node
/** * Build this project. */
'use strict'
process.
chdir
(
`
${__dirname}
/..`
)
const
apeTasking =
require
(
'ape-tasking'
)
const
coz =
require
(
'coz'
) apeTasking.
runTasks
(
'build'
, [
() =>
coz.
render
([
'.*.bud'
,
'bin/.*.bud'
,
'lib/.*.bud'
,
'test/.*.bud'
]) ],
true
)