File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 7
7
"lint" : " eslint src" ,
8
8
"build" : " babel --out-dir lib src" ,
9
9
"watch" : " chokidar src -c 'npm run build'" ,
10
- "pretest " : " npm run lint && npm run build " ,
11
- "test " : " mocha " ,
10
+ "test " : " mocha --compilers js:babel/register " ,
11
+ "posttest " : " npm run lint && npm run build " ,
12
12
"autotest" : " chokidar src test -c 'npm test'" ,
13
13
"precover" : " npm run lint && npm run build" ,
14
14
"cover" : " istanbul cover node_modules/mocha/bin/_mocha" ,
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ var assert = require("assert");
6
6
var fs = require ( "fs" ) ;
7
7
var path = require ( "path" ) ;
8
8
var postcss = require ( "postcss" ) ;
9
- var processor = require ( "../" ) ;
9
+ var processor = require ( "../src " ) ;
10
10
11
11
function generateInvalidCSS ( css ) {
12
12
css . eachDecl ( function ( decl ) {
You can’t perform that action at this time.
0 commit comments