add --no-error-on-unmatched-pattern (#639)

This commit is contained in:
Owen Bickford 2021-10-24 13:57:14 -04:00 committed by GitHub
parent b53fe1887b
commit 46d49743b9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,8 +4,8 @@
"scripts": {
"deploy": "NODE_ENV=production webpack --mode production",
"watch": "webpack --mode development --watch",
"format": "prettier --trailing-comma es5 --write {js,test,css}/**/*.{js,json,css,scss,md}",
"format-check": "prettier --trailing-comma es5 --check {js,test,css}/**/*.{js,json,css,scss,md}",
"format": "prettier --trailing-comma es5 --write {js,test,css}/**/*.{js,json,css,scss,md} --no-error-on-unmatched-pattern",
"format-check": "prettier --trailing-comma es5 --check {js,test,css}/**/*.{js,json,css,scss,md} --no-error-on-unmatched-pattern",
"test": "jest",
"test:watch": "jest --watch"
},