|
3 ヶ月 前 | |
---|---|---|
.husky | 1 年間 前 | |
.vscode | 11 ヶ月 前 | |
config | 3 ヶ月 前 | |
mock | 1 年間 前 | |
nginx | 1 年間 前 | |
public | 1 年間 前 | |
src | 3 ヶ月 前 | |
tests | 1 年間 前 | |
.editorconfig | 1 年間 前 | |
.eslintignore | 1 年間 前 | |
.eslintrc.js | 10 ヶ月 前 | |
.gitignore | 1 年間 前 | |
.prettierignore | 1 年間 前 | |
.prettierrc.js | 1 年間 前 | |
.stylelintrc.js | 1 年間 前 | |
README.md | 1 年間 前 | |
jc.Dockerfile | 1 年間 前 | |
jest.config.js | 1 年間 前 | |
jsconfig.json | 1 年間 前 | |
node_modules.zip | 7 ヶ月 前 | |
package-lock.json | 6 ヶ月 前 | |
package.json | 8 ヶ月 前 | |
playwright.config.ts | 1 年間 前 | |
tsconfig.json | 1 年間 前 |
名称 | 文档地址 | 程度 | 重点学习 |
---|---|---|---|
Ant Design pro | https://pro.ant.design/zh-CN/docs/overview/ | 熟悉 | 文档部分至少看一遍,建议实操一遍 |
Ant Design | https://ant.design/components/overview-cn/ | 熟悉 | 组件部分 |
高级 antd 库 | https://procomponents.ant.design/ | 熟悉 | 组件部分 |
UmiJs | https://v3.umijs.org/zh-CN/docs | 了解 | Umi 基础至少看一遍 |
TypeScript | https://juejin.cn/post/7068081327857205261 | 了解 | 与 Java 类似,只需了解其写法即可 |
时间处理库 moment | http://momentjs.cn/docs/ | 了解 | 时间的解析 |
名称 | 作用 |
---|---|
feat: A new feature | 添加新功能 |
fix: A bug fix | 修复:错误修复 |
docs: Documentation only changes | 仅文档更改 |
style: Changes that do not affect the meaning of the | 不影响代码含义的更改(空格、格式、缺少分号等 |
refactor: A code change that neither fixes a bug nor | 既不修复错误也不添加功能的代码更改 |
perf: A code change that improves performance | perf:提高性能的代码更改 |
test: Adding missing tests or correcting existing tests | 添加缺失的测试或纠正现有的测试 |
build: Changes that affect the build system or external dependencies | 影响构建系统或外部依赖项的更改 |
ci: Changes to our CI configuration files and scripts | 对我们的 CI 配置文件和脚本的更改 |
chore: Other changes that don't modify src or test | 不修改 src 或测试文件的其他更改 |
revert: Reverts a previous commit | 还原以前的提交 |