File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
- PATH := node_modules/.bin:$(PATH )
2
- SASSDOC = bin/sassdoc
3
- MOCHA = node_modules/.bin/_mocha
4
- TO5_FLAGS = --experimental
1
+ PATH := $( PWD ) / node_modules/.bin:$(PATH )
2
+ SASSDOC := $( PWD ) / bin/sassdoc
3
+ MOCHA := $( PWD ) / node_modules/.bin/_mocha
4
+ TO5_FLAGS : = --experimental
5
5
6
6
all : dist lint test
7
7
@@ -21,7 +21,7 @@ lint: .jshintrc
21
21
test : test/data/expected.stream.json dist
22
22
mocha test/annotations/* .test.js
23
23
mocha test/env/* .test.js test/utils/* .test.js
24
- rm -rf sassdoc && mocha test/api/* .test.js
24
+ rm -rf sassdoc && $( MOCHA ) test/api/* .test.js
25
25
$(SASSDOC ) --parse test/data/test.scss | diff - test/data/expected.json
26
26
$(SASSDOC ) --parse < test/data/test.scss | diff - test/data/expected.stream.json
27
27
rm -rf sassdoc && $(SASSDOC ) test/data/test.scss && [ -d sassdoc ]
You can’t perform that action at this time.
0 commit comments