2019-04-30 11:11:25 +08:00
|
|
|
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
|
2020-10-26 20:05:39 +08:00
|
|
|
rm -rf npm
|
|
|
|
mkdir npm
|
2019-04-30 11:11:25 +08:00
|
|
|
|
2020-10-26 20:05:39 +08:00
|
|
|
cp -rf lib npm
|
|
|
|
cp package.json npm
|
|
|
|
cp schema.json npm
|
|
|
|
cp -rf scss npm
|
2020-10-27 11:42:29 +08:00
|
|
|
cp -rf docs npm
|
2020-10-26 20:05:39 +08:00
|
|
|
cp -rf examples npm
|
|
|
|
cp -rf sdk npm
|
2019-04-30 11:11:25 +08:00
|
|
|
|
2020-10-26 20:05:39 +08:00
|
|
|
cd npm
|
2019-08-05 16:54:39 +08:00
|
|
|
|
2020-10-26 20:05:39 +08:00
|
|
|
sed -i '' -e 's/\"name\": \"amis\"/\"name\": \"@fex\/amis\"/g' ./package.json
|
2019-04-30 11:11:25 +08:00
|
|
|
|
2020-10-26 20:05:39 +08:00
|
|
|
npm publish --registry=http://registry.npm.baidu-int.com
|
2019-04-30 11:11:25 +08:00
|
|
|
|
2020-05-27 19:31:50 +08:00
|
|
|
cd ..
|
2020-10-26 20:05:39 +08:00
|
|
|
rm -rf npm
|