Skip to content

Commit

Permalink
chore: add clean-nested make target (#6250)
Browse files Browse the repository at this point in the history
  • Loading branch information
kuhe committed Jul 2, 2024
1 parent 3c64d78 commit bc48cce
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@ login:
sync:
make -f Makefile.private.mk sync

# removes nested node_modules folders
clean-nested:
rm -rf ./lib/*/node_modules
rm -rf ./packages/*/node_modules
rm -rf ./clients/*/node_modules
rm -rf ./private/*/node_modules

link-smithy:
rm -rf ./node_modules/\@smithy
ln -s ../../smithy-typescript/packages/ ./node_modules/\@smithy
Expand Down Expand Up @@ -49,4 +56,4 @@ tpk:

server-protocols:
yarn generate-clients -s
yarn test:server-protocols
yarn test:server-protocols

0 comments on commit bc48cce

Please sign in to comment.