Skip to content

Commit

Permalink
Merge pull request #130 from salesforcecli/mdonnalley/typescript-erro…
Browse files Browse the repository at this point in the history
…r-output

chore: update error output
  • Loading branch information
iowillhoit authored Dec 6, 2024
2 parents c7e9d40 + 29c23cd commit 7fc3dd1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/preventTypescriptDep.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@ jobs:
- run: |
yarn install --production
if [ -d node_modules/typescript ]; then
echo "Typescript dependency found";
echo "ERROR: Typescript dependency found";
echo "--- yarn why typescript ---"
yarn why typescript;
echo "--- npm ls typescript---"
npm ls typescript
exit 1;
fi

0 comments on commit 7fc3dd1

Please sign in to comment.