Skip to content

Commit

Permalink
fix(package.json): removed postinstall script that
Browse files Browse the repository at this point in the history
Fix a regression introduced on 1.5.0 where the postinstall would cause
the package to fail to be installed.
  • Loading branch information
JoaoTMDias committed Mar 15, 2024
1 parent f4bc053 commit 4a98f56
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@
"lint": "eslint \"src/**/*.{ts,tsx,js,jsx}\" --fix",
"prettier:base": "prettier --parser typescript",
"postbuild": "npx size-limit",
"postinstall": "cd ./documentation && npm install",
"docs:install": "cd ./documentation && npm install",
"docs:start": "cd ./documentation && npm run start",
"docs:start-ci": "cd ./documentation && npm run start",
"docs:build": "cd ./documentation && npm run build",
"docs:start-ci": "npm run docs:install && cd ./documentation && npm run start",
"docs:build": "npm run docs:install && cd ./documentation && npm run build",
"reinstall": "rm -rf node_modules && npm install",
"coverage:clean": "merge-coverage clear && merge-coverage clear --folder coverage",
"coverage:merge": "merge-coverage combine-coverage --tools cypress,vitest",
Expand Down

0 comments on commit 4a98f56

Please sign in to comment.