Expand globs

This commit is contained in:
Nathan Bierema 2020-08-16 08:34:28 -04:00
parent eee6c6338f
commit 792a301669

View File

@ -32,10 +32,10 @@
"publish": "lerna publish", "publish": "lerna publish",
"canary": "lerna publish --canary preminor --npm-tag alpha", "canary": "lerna publish --canary preminor --npm-tag alpha",
"next": "lerna publish --bump prerelease --npm-tag next", "next": "lerna publish --bump prerelease --npm-tag next",
"lint": "eslint \"**/*.{js,jsx}\" --cache", "lint": "eslint \"**/*.{js,jsx,ts,tsx}\" --cache",
"lint:fix": "eslint \"**/*.{js,jsx}\" --fix --cache", "lint:fix": "eslint \"**/*.{js,jsx,ts,tsx}\" --fix --cache",
"lint:all": "eslint \"**/*.{js,jsx}\"", "lint:all": "eslint \"**/*.{js,jsx,ts,tsx}\"",
"prettify": "prettier \"**/*.{js,jsx,json,css,html,md}\" --write", "prettify": "prettier \"**/*.{js,jsx,ts,tsx,json,css,html,md}\" --write",
"test": "jest --onlyChanged", "test": "jest --onlyChanged",
"test:all": "jest" "test:all": "jest"
}, },
@ -56,7 +56,7 @@
} }
}, },
"lint-staged": { "lint-staged": {
"*.{js,jsx}": [ "*.{js,jsx,ts,tsx}": [
"prettier --write", "prettier --write",
"yarn lint:fix" "yarn lint:fix"
], ],