Skip to content

Commit

Permalink
fix: update the eslint pattern regex to work on windows based systems
Browse files Browse the repository at this point in the history
  • Loading branch information
vinayakkulkarni committed Aug 18, 2020
1 parent c5dd390 commit 8dbbfcc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions template/base/_package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
"bundle:min": "rollup -c build/rollup.min.config.js",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lintfix": "npm run lint:eslint:fix && npm run lint:prettier:fix",
"lint:eslint": "eslint 'src/**/*.{js,vue}'",
"lint:eslint:fix": "eslint --fix 'src/**/*.{js,vue}'",
"lint:eslint": "eslint \"{,!(node_modules|dist)/**/}*.{js,vue}\"",
"lint:eslint:fix": "eslint --fix \"{,!(node_modules|dist)/**/}*.{js,vue}\"",
"lint:prettier": "prettier --check \"{,!(node_modules|dist)/**/}*.{js,vue}\"",
"lint:prettier:fix": "prettier --write \"{,!(node_modules|dist)/**/}*.{js,vue}\"",
"release:prepare": "shipjs prepare",
Expand Down

0 comments on commit 8dbbfcc

Please sign in to comment.