Skip to content

Commit

Permalink
build: fix proto-all rule not working on local machine (#1429)
Browse files Browse the repository at this point in the history
Signed-off-by: Alessandro Yuichi Okimoto <[email protected]>
  • Loading branch information
cre8ivejp authored Jan 8, 2025
1 parent e1f7c79 commit a89f506
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/web-v2/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
"lint": "yarn tsc:strict && yarn eslint && yarn prettier",
"lintfix": "yarn eslintfix && yarn prettierfix",
"tsc:strict": "tsc --project tsconfig.strict.json",
"eslint": "eslint ./src/**/*.{js,ts,tsx}",
"eslintfix": "eslint --fix ./src/**/*.{js,ts,tsx}",
"eslint": "eslint './src/**/*.{js,ts,tsx}'",
"eslintfix": "eslint --fix './src/**/*.{js,ts,tsx}'",
"prettier": "prettier . --check",
"prettierfix": "prettier . --write",
"formatjs-extract": "formatjs extract 'src/**/!(*.d).{ts,tsx}*' --ignore src/proto --ignore src/types --out-file src/lang/extracted-messages.json",
Expand Down

0 comments on commit a89f506

Please sign in to comment.