mirror of
https://gitee.com/baidu/amis.git
synced 2024-12-02 03:48:13 +08:00
c591ab4381
* 尝试使用 vite 跑开发环境 * 尝试使用 vite 跑开发环境 * 尝试使用 vite 跑开发环境 * 尝试使用 vite 跑开发环境 * 样式文档调整 * 修复有多个 __inline 时的报错 * scirpt 调整 * feat:chart接入事件动作 (#5669) * chore: input-group 没有 name 不应该报 warning (#5667) * chore: 处理编译TS Warning,调整TableStore中label解析的顺序 (#5670) * feat: timeline时间轴支持自定义图标 (#5668) * fix:折叠器Collapse自定义图标&inputNumber对含后缀生效 * 修改 * 正则修改 * 正则修改 * 正则修改 * feat:将默认px替换为rem 2px===0.125rem * feat:timeline时间轴支持自定义图标 Co-authored-by: xujiahao01 <xujiahao01@baidu.com> * fix: 调整echarts-stat使用方式,兼容vite打包异步非esm模块 (#5672) * feat: chart 支持配置加载 geojson 及百度地图 (#5674) * feat: chart 支持配置 geoURL 及 geoName * 增加百度地图配置 * chore: 修复 coverage 运行报错 (#5678) * chore: coverage 执行换成 v8 解决内存问题 (#5679) * 尝试使用 vite 跑开发环境 * amis-formula 也添加 esm 模块 * 代码合并有问题,做些调整 Co-authored-by: hsm-lv <80095014+hsm-lv@users.noreply.github.com> Co-authored-by: 吴多益 <wuduoyi@baidu.com> Co-authored-by: RUNZE LU <36724300+lurunze1226@users.noreply.github.com> Co-authored-by: 徐佳豪 <1440054388@qq.com> Co-authored-by: xujiahao01 <xujiahao01@baidu.com> Co-authored-by: 刘丹 <365533093@qq.com>
108 lines
2.9 KiB
Markdown
108 lines
2.9 KiB
Markdown
<div align="center">
|
||
<p>
|
||
<img width="284" src="https://github.com/baidu/amis/raw/master/examples/static/logo.png">
|
||
</p>
|
||
|
||
[文档(国内)](https://baidu.gitee.io/amis/) |
|
||
[文档(备用)](https://aisuda.bce.baidu.com/amis/) |
|
||
[文档(国外)](https://baidu.github.io/amis/) |
|
||
[可视化编辑器](https://aisuda.github.io/amis-editor-demo/) |
|
||
[amis-admin](https://github.com/aisuda/amis-admin) |
|
||
[爱速搭](https://baidu.gitee.io/aisuda-docs/)
|
||
|
||
</div>
|
||
|
||
<div align="center">
|
||
QQ 群: 1147750223(已满) |
|
||
QQ 群2: 651547026 |
|
||
如流群:3395342 |
|
||
如流群2:5511067|
|
||
</div>
|
||
|
||
<div align="center">
|
||
|
||
![build](https://img.shields.io/github/workflow/status/baidu/amis/gh-pages/master)
|
||
![license](https://img.shields.io/github/license/baidu/amis.svg)
|
||
![version](https://img.shields.io/npm/v/amis)
|
||
![language](https://img.shields.io/github/languages/top/baidu/amis)
|
||
[![codecov](https://codecov.io/gh/baidu/amis/branch/master/graph/badge.svg?token=9LwimHGoE5)](https://codecov.io/gh/baidu/amis)
|
||
![last](https://img.shields.io/github/last-commit/baidu/amis.svg)
|
||
|
||
</div>
|
||
|
||
前端低代码框架,通过 JSON 配置就能生成各种后台页面,极大减少开发成本,甚至可以不需要了解前端。
|
||
|
||
## 开发指南
|
||
|
||
以下是参与开发 amis 才需要看的,使用请看前面的文档。
|
||
|
||
> 如果 github 下载慢可以使用 [gitee](https://gitee.com/baidu/amis) 上的镜像。
|
||
|
||
推荐使用 node 12/14/16。npm 7+, 因为用到了 workspaces 功能。
|
||
|
||
```bash
|
||
# 安装项目 npm 依赖,在 node 12 下会有报错但不影响正常使用。
|
||
npm i --legacy-peer-deps
|
||
|
||
# 启动项目,等编译结束后通过 http://127.0.0.1:8888/examples/pages/simple 访问。
|
||
npm start
|
||
```
|
||
|
||
### 测试
|
||
|
||
```bash
|
||
# 安装依赖
|
||
npm i --legacy-peer-deps
|
||
|
||
# 执行构建
|
||
npm run build
|
||
|
||
# 执行测试用例
|
||
npm test --workspaces
|
||
|
||
# 测试某个用例
|
||
npm test --workspace amis inputImage
|
||
|
||
# 查看测试用例覆盖率
|
||
npm run coverage
|
||
|
||
# 更新 snapshot
|
||
npm run update-snapshot
|
||
```
|
||
|
||
### 发布版本
|
||
|
||
```bash
|
||
# 先通过一下命令设置版本号
|
||
npm run version
|
||
|
||
# 如果是 beta 版本使用如下命令
|
||
# npm run version -- 2.0.1-beta.0 --no-git-tag-version
|
||
|
||
# 发布内部 registry
|
||
npm run publish-to-internal
|
||
|
||
# 发布外网环境
|
||
npm run release
|
||
```
|
||
|
||
### 如何贡献
|
||
|
||
请使用分支开发,首先创建分支
|
||
|
||
git checkout -b feat-xxx
|
||
|
||
开发提交后使用 `git push --set-upstream origin feat-xxx` 创建远程分支。
|
||
|
||
然后通过系统提示的 https://github.com/xxx/amis/pull/new/feat-xxx 链接来提交 PR。
|
||
|
||
请采用 typescript 编写,所有合理的改动、新的公用渲染器、用例或者文档的提交都会被接收。
|
||
|
||
## 贡献者
|
||
|
||
<a href="https://github.com/baidu/amis/graphs/contributors"><img src="https://opencollective.com/amis/contributors.svg?width=890" /></a>
|
||
|
||
## 低代码平台
|
||
|
||
amis 只能实现前端低代码,如果需要完整的低代码平台推荐使用[爱速搭](https://baidu.gitee.io/aisuda-docs/)。
|