chore: 添加第三方依赖库
This commit is contained in:
19
thirdparty/rapier.js/publish_all_prod.sh
vendored
Normal file
19
thirdparty/rapier.js/publish_all_prod.sh
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
#!/bin/bash
|
||||
|
||||
for entry in builds/*/pkg
|
||||
do
|
||||
(
|
||||
echo "Publishing $entry"
|
||||
cd $entry;
|
||||
npm publish --access public;
|
||||
)
|
||||
done;
|
||||
|
||||
for entry in rapier-compat/builds/*/pkg
|
||||
do
|
||||
(
|
||||
echo "Publishing $entry"
|
||||
cd $entry;
|
||||
npm publish --access public;
|
||||
)
|
||||
done;
|
||||
Reference in New Issue
Block a user