We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c64d78 commit bc48cceCopy full SHA for bc48cce
Makefile
@@ -12,6 +12,13 @@ login:
12
sync:
13
make -f Makefile.private.mk sync
14
15
+# removes nested node_modules folders
16
+clean-nested:
17
+ rm -rf ./lib/*/node_modules
18
+ rm -rf ./packages/*/node_modules
19
+ rm -rf ./clients/*/node_modules
20
+ rm -rf ./private/*/node_modules
21
+
22
link-smithy:
23
rm -rf ./node_modules/\@smithy
24
ln -s ../../smithy-typescript/packages/ ./node_modules/\@smithy
@@ -49,4 +56,4 @@ tpk:
49
56
50
57
server-protocols:
51
58
yarn generate-clients -s
52
- yarn test:server-protocols
59
+ yarn test:server-protocols
0 commit comments