Skip to content

Commit

Permalink
ci: don't install type compiler during npm postinstall script
Browse files Browse the repository at this point in the history
  • Loading branch information
marcus-sa committed Sep 11, 2023
1 parent 995f6d2 commit 1a10fa1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"install-compiler": "sh scripts/install-compiler.sh",
"docs": "rm -rf docs && node --max-old-space-size=12096 node_modules/.bin/typedoc packages/*/index.ts",
"publish-website": "heroku container:push web && heroku container:release web",
"postinstall": "CI || npm run install-compiler"
"postinstall": "if [ \\\"$CI\\\" != \\\"true\\\" ]; then npm run install-compiler; fi"
},
"devDependencies": {
"@angular-devkit/core": "^15.0.0",
Expand Down

0 comments on commit 1a10fa1

Please sign in to comment.