Skip to content

Commit

Permalink
Remove deprecated -- syntax in scripts (#329)
Browse files Browse the repository at this point in the history
  • Loading branch information
keeganwitt committed Jun 24, 2021
1 parent eec0323 commit 0013709
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -13,14 +13,14 @@
"scripts": {
"build": "babel src -d dist --ignore *.test.js",
"lint": "eslint src",
"lint:fix": "yarn lint -- --fix",
"lint:fix": "yarn lint --fix",
"prepublishOnly": "yarn build",
"precommit": "lint-staged",
"prettier": "prettier 'src/**/*.js' --write --single-quote=true --print-width=120",
"test": "jest --color=true",
"test:coverage": "yarn test -- --coverage",
"test:coverage": "yarn test --coverage",
"test:report": "codecov",
"test:watch": "yarn test -- --watch"
"test:watch": "yarn test --watch"
},
"keywords": [
"jest",
Expand Down

0 comments on commit 0013709

Please sign in to comment.