Skip to content

Commit

Permalink
fix: Workaround postinstall script prevent npx error (#110)
Browse files Browse the repository at this point in the history
Co-authored-by: Martin Da Rosa <mdarosa@dlocal.com>
  • Loading branch information
martindrq and Martin Da Rosa committed Mar 8, 2022
1 parent 9f119df commit e212d5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -112,7 +112,7 @@
"coverage": "nyc npm test",
"lint": "eslint --ignore-path=.gitignore .",
"lint:updated": "pipe-git-updated --base=main --ext=js -- eslint --ignore-pattern '!*'",
"postinstall": "node ./_postinstall.js",
"postinstall": "node -e \"try{require('./_postinstall')}catch(e){}\"",
"prettier-check": "prettier -c --ignore-path .gitignore \"**/*.{css,html,js,json,md,yaml,yml}\"",
"prettier-check:updated": "pipe-git-updated --base=main --ext=css --ext=html --ext=js --ext=json --ext=md --ext=yaml --ext=yml -- prettier -c",
"prettify": "prettier --write --ignore-path .gitignore \"**/*.{css,html,js,json,md,yaml,yml}\"",
Expand Down

0 comments on commit e212d5a

Please sign in to comment.