UNPKG
basic-kit-theme
Version:
latest (0.13.0)
0.13.0
0.12.0
0.11.0
0.10.1
0.9.0
0.8.1
0.2.1
0.2.0
0.1.2
0.1.1
The basic theme and theme specification for react-basic-kit
basic-kit-theme
/
build.js
13 lines
(8 loc)
•
234 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
mkdirp
from
'mkdirp'
import
{ writeFileSync }
from
'fs'
import
{ theme }
from
'./src/index'
mkdirp.
sync
(
'lib'
)
writeFileSync
(
'lib/index.json'
,
JSON
.
stringify
(theme), {
encoding
:
'utf8'
})
console
.
log
(
'Build complete.\n'
)