File tree 3 files changed +3
-13
lines changed
3 files changed +3
-13
lines changed Original file line number Diff line number Diff line change 5
5
- " 12"
6
6
- " 14"
7
7
8
- script : yarn ci
8
+ script : yarn test
9
9
10
10
after_success :
11
11
- cat ./coverage/lcov.info | node_modules/.bin/coveralls --verbose
Original file line number Diff line number Diff line change 25
25
"prettier" : " prettier -l --ignore-path .gitignore ." ,
26
26
"eslint" : " eslint --ignore-path .gitignore ." ,
27
27
"lint" : " yarn eslint && yarn prettier" ,
28
- "pretest" : " yarn lint" ,
29
- "test" : " jest" ,
30
28
"test:only" : " jest" ,
31
29
"test:watch" : " jest --watch" ,
32
30
"test:coverage" : " jest --coverage --collectCoverageFrom=\" src/**/*\" " ,
33
- "test:ci" : " yarn pretest && yarn cover" ,
31
+ "pretest" : " yarn lint" ,
32
+ "test" : " yarn test:coverage" ,
34
33
"prepublishOnly" : " yarn test"
35
34
},
36
35
"dependencies" : {
Original file line number Diff line number Diff line change @@ -508,15 +508,6 @@ module.exports = (options = {}) => {
508
508
return ;
509
509
}
510
510
511
- if (
512
- rule . nodes &&
513
- rule . selector . slice ( 0 , 2 ) === "--" &&
514
- rule . selector . slice ( - 1 ) === ":"
515
- ) {
516
- // ignore custom property set
517
- return ;
518
- }
519
-
520
511
const context = localizeNode ( rule , options . mode , localAliasMap ) ;
521
512
522
513
context . options = options ;
You can’t perform that action at this time.
0 commit comments