Go to file
qkiroc 51bd288d0a
feat: 整理项目图标 (#7362)
* feat: 整理项目图标

* feat: 整理项目图标

* feat: 整理项目图标, 更新快照

* feat: 整理项目图标, 更新快照

* feat: 整理项目图标, 更新快照

* feat: 整理项目图标, 更新快照

* feat: 整理项目图标, 更新快照

* feat: 整理项目图标, 更新快照

---------

Co-authored-by: qinhaoyan <30946345+qinhaoyan@users.noreply.github.com>
2023-07-10 10:34:42 +08:00
__mocks__ 解决大部分用例问题 2022-06-02 10:00:09 +08:00
.github chore: 换一下 office-viewer 包名 (#7321) 2023-07-03 14:31:27 +08:00
.husky fix: 修复css变量文件编译报错问题&chore:新增样式校验 (#5862) 2022-12-05 20:03:09 +08:00
.vscode feat: 整理项目图标 (#7362) 2023-07-10 10:34:42 +08:00
docs/zh-CN feat: InputRange组件min,max,step支持变量 2023-07-07 18:11:03 +08:00
examples feat: App 应用支持设置菜单徽标 Close: #7380 (#7384) 2023-07-06 20:16:51 +08:00
mock fix: 修复 inputGroup 表单项在 service 下时校验问题 Close: #7279 2023-06-28 15:29:45 +08:00
packages feat: 整理项目图标 (#7362) 2023-07-10 10:34:42 +08:00
scripts chore: 文心千帆问答机器人示例 (#7308) 2023-06-30 11:42:09 +08:00
types/uncontrollable 调整为 monorepo 2022-06-01 15:06:00 +08:00
.dockerignore feat: office-view 支持内嵌字体;数学公式;初步支持 textbox;修复 highlight 和加粗渲染不正确问题 (#6459) 2023-03-23 20:53:51 +08:00
.editorconfig chore: 文心千帆问答机器人示例 (#7308) 2023-06-30 11:42:09 +08:00
.gitattributes chore: 修复 office viewer 文件在 ghpages 里无法访问 (#6435) 2023-03-21 19:27:34 +08:00
.gitignore chore: 增加iconConfig配置 (#7044) 2023-05-31 14:41:38 +08:00
.gitpod.yml 使用 gitpod 运行开发环境 #7229 (#7230) 2023-06-28 21:14:47 +08:00
.npmrc chore: 添加.npmrc, revision.json添加ignore 2022-12-01 10:49:47 +08:00
.prettierrc 翻译基于 key 而不是中文,方便以后其他语言扩展 (#1416) 2021-01-21 18:13:04 +08:00
.stylelintrc.json fix: 修复css变量文件编译报错问题&chore:新增样式校验 (#5862) 2022-12-05 20:03:09 +08:00
.travis.yml ECharts 编辑器初始 2020-10-29 19:52:25 +08:00
amis.code-workspace chore: 换一下 office-viewer 包名 (#7321) 2023-07-03 14:31:27 +08:00
deploy-gh-pages.sh 修复 schema.json 编译问题 2022-06-02 15:37:48 +08:00
fis-conf.js chore: 换一下 office-viewer 包名 (#7321) 2023-07-03 14:31:27 +08:00
index.html docs: 补充 wizard 文档 & 优化 vite 响应 /examples/index 页面 2023-06-08 19:01:56 +08:00
lerna.json fix: 修复 office-viewer 开启变量后无限渲染问题 (#7414) 2023-07-07 18:08:51 +08:00
LICENSE Update LICENSE 2020-12-10 11:24:40 +08:00
package.json chore: 换一下 office-viewer 包名 (#7321) 2023-07-03 14:31:27 +08:00
publish-editor-to-internal.sh chore: 更新editor内网发布脚本 2023-04-04 11:18:27 +08:00
publish-to-internal.sh chore: 调整amis内网发布脚本 2023-04-21 13:52:06 +08:00
pull_request_template.md chore: pull_request_template.md 2023-04-04 15:00:48 +08:00
README.md Update README.md (#7243) 2023-06-26 12:01:45 +08:00
tsconfig.json chore: 换一下 office-viewer 包名 (#7321) 2023-07-03 14:31:27 +08:00
vite.config.ts chore: 换一下 office-viewer 包名 (#7321) 2023-07-03 14:31:27 +08:00

如流群3395342 | 如流群25511067|

build license version language codecov last

前端低代码框架,通过 JSON 配置就能生成各种后台页面,极大减少开发成本,甚至可以不需要了解前端。

开发指南

以下是参与开发 amis 才需要看的,使用请看前面的文档。

如果 github 下载慢可以使用 gitee 上的镜像。

推荐使用 node 12/14/16。npm 7+ 因为用到了 workspaces 功能。

# 安装项目 npm 依赖,在 node 12 下会有报错但不影响正常使用。
npm i --legacy-peer-deps

# 启动项目,等编译结束后通过 http://127.0.0.1:8888/examples/pages/simple 访问。
npm start

如果是开发编辑器,需要访问 http://127.0.0.1:8888/packages/amis-editor/

测试

# 安装依赖
npm i --legacy-peer-deps

# 执行构建
npm run build

# 执行测试用例
npm test --workspaces

# 测试某个用例
npm test --workspace amis inputImage

# 查看测试用例覆盖率
npm run coverage

# 更新 snapshot
npm run update-snapshot

发布版本

# 先通过一下命令设置版本号
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 编写,所有合理的改动、新的公用渲染器、用例或者文档的提交都会被接收。

贡献者

低代码平台

amis 只能实现前端低代码,如果需要完整的低代码平台推荐使用爱速搭