escape double quotes in eslint command

This commit is contained in:
Jacob Bolda
2020-04-11 23:00:32 -05:00
parent e0754ec952
commit b77c216cf6
2 changed files with 4 additions and 4 deletions

View File

@@ -4,8 +4,8 @@
"description": "Create a release",
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/**.js tests/**.js --fix",
"test": "eslint src/**.js tests/**.js && jest --coverage",
"lint": "eslint \"src/**.js\" \"tests/**.js\" --fix",
"test": "eslint \"src/**.js\" \"tests/**.js\" && jest --coverage",
"build": "ncc build src/main.js",
"precommit": "npm run build && git add dist/"
},