File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -4,10 +4,10 @@ const shell = require('shelljs');
4
4
const chalk = require ( 'chalk' ) ;
5
5
const chokidar = require ( 'chokidar' ) ;
6
6
const spinner = require ( 'ora' ) ( ) ;
7
- const version = require ( '../package.json' ) . version ;
7
+ const metadata = require ( '../package.json' ) ;
8
8
9
9
const args = require ( 'yargs' )
10
- . version ( version )
10
+ . version ( metadata . version )
11
11
. usage (
12
12
`Usage:
13
13
$0 [OPTIONS] [--watch]`
@@ -23,7 +23,7 @@ $0 [OPTIONS] [--watch]`
23
23
const config = {
24
24
root : path . resolve ( __dirname , '..' ) ,
25
25
src : path . resolve ( __dirname , '../src' ) ,
26
- entrypoint : path . resolve ( __dirname , '../src/csh-material-bootstrap.scss' ) ,
26
+ entrypoint : path . resolve ( __dirname , '../' , metadata . sass ) ,
27
27
dist : path . resolve ( __dirname , '../dist/' )
28
28
} ;
29
29
You can’t perform that action at this time.
0 commit comments