mirror of
https://gitee.com/baidu/amis.git
synced 2024-12-02 11:58:10 +08:00
c8c4b6efa3
* 文档优化 * 文档细节调整,删除示例的 height 设置,使用自动撑开 * sdk 使用完整例子,因为新版没发布 * 修复官网语言不正确问题 * 增加 icon 调整颜色及大小的例子 * 修复文字错误 * 补充 each 的文档 * 修复 zh-CN 大写问题
36 lines
712 B
Bash
36 lines
712 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
rm -rf lib
|
|
rm -rf output
|
|
|
|
fis3 release publish -c
|
|
rm -rf lib/node_modules
|
|
|
|
# 生成 sdk
|
|
rm -rf sdk && fis3 release publish-sdk -c
|
|
|
|
cp -r node_modules/monaco-editor/min/vs/base/browser sdk/thirds/monaco-editor/min/vs/base
|
|
|
|
# 生成去掉变量的 css
|
|
./node_modules/.bin/postcss sdk/sdk.css > sdk/sdk-ie11.css
|
|
./node_modules/.bin/postcss sdk/cxd.css > sdk/cxd-ie11.css
|
|
./node_modules/.bin/postcss sdk/dark.css > sdk/dark-ie11.css
|
|
|
|
cp examples/demo.html sdk/
|
|
|
|
# 生成 .d.ts 文件
|
|
./node_modules/.bin/tsc --allowJs --declaration
|
|
|
|
cd output
|
|
|
|
for f in $(find . -name "*.d.ts"); do
|
|
mkdir -p ../lib/$(dirname $f) && mv $f ../lib/$(dirname $f)
|
|
done
|
|
|
|
cd ..
|
|
|
|
rm -rf output
|
|
|
|
npm run build-schemas
|