File tree Expand file tree Collapse file tree 3 files changed +3
-13
lines changed Expand file tree Collapse file tree 3 files changed +3
-13
lines changed Original file line number Diff line number Diff line change 55 - " 12"
66 - " 14"
77
8- script : yarn ci
8+ script : yarn test
99
1010after_success :
1111 - cat ./coverage/lcov.info | node_modules/.bin/coveralls --verbose
Original file line number Diff line number Diff line change 2525 "prettier" : " prettier -l --ignore-path .gitignore ." ,
2626 "eslint" : " eslint --ignore-path .gitignore ." ,
2727 "lint" : " yarn eslint && yarn prettier" ,
28- "pretest" : " yarn lint" ,
29- "test" : " jest" ,
3028 "test:only" : " jest" ,
3129 "test:watch" : " jest --watch" ,
3230 "test:coverage" : " jest --coverage --collectCoverageFrom=\" src/**/*\" " ,
33- "test:ci" : " yarn pretest && yarn cover" ,
31+ "pretest" : " yarn lint" ,
32+ "test" : " yarn test:coverage" ,
3433 "prepublishOnly" : " yarn test"
3534 },
3635 "dependencies" : {
Original file line number Diff line number Diff line change @@ -508,15 +508,6 @@ module.exports = (options = {}) => {
508508 return ;
509509 }
510510
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-
520511 const context = localizeNode ( rule , options . mode , localAliasMap ) ;
521512
522513 context . options = options ;
You can’t perform that action at this time.
0 commit comments