mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-30 02:58:05 +08:00
23 lines
334 B
Bash
23 lines
334 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 sdk npm
|
|
cp .npmignore npm
|
|
cp -rf node_modules 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
|