mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-30 02:48:55 +08:00
23 lines
328 B
Bash
23 lines
328 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
rm -rf npm
|
|
mkdir npm
|
|
|
|
cp -rf lib npm
|
|
cp package.json npm
|
|
cp schema.json npm
|
|
cp -rf scss npm
|
|
cp -rf docs npm
|
|
cp -rf examples npm
|
|
cp -rf sdk npm
|
|
|
|
cd npm
|
|
|
|
sed -i '' -e 's/\"name\": \"amis\"/\"name\": \"@fex\/amis\"/g' ./package.json
|
|
|
|
npm publish --registry=http://registry.npm.baidu-int.com
|
|
|
|
cd ..
|
|
# rm -rf npm
|