美文网首页
ant-design 源码根目录文件都是干嘛的

ant-design 源码根目录文件都是干嘛的

作者: 梧桐月明中 | 来源:发表于2020-08-04 17:30 被阅读0次

认识了不少 npm 包

├─.circleci
|    ├─config.yml //使用 CircleCI 2.0 进行持续集成/持续部署
├─.codesandbox
|    ├─ci.json //codesandbox.io(一款在线代码编辑器)上的模版
├─.github
├─components
|    ├─__tests__
|    |    ├─__snapshots__
|    |    |    ├─index.test.js.snap
|    |    ├─index.test.js
|    ├─_util
|    |    ├─__tests__
|    |    ├─xxx.ts
|    |    ├─xxx.tsx
|    |    ├─...
|    ├─alert
|    |    ├─__tests__
|    |    ├─demo
|    |    |    ├─xxx.md
|    |    |    ├─...
|    |    ├─style
|    |    ├─index.tsx
|    |    ├─index.en-US.md
|    |    ├─index.zh-CN.md
|    ├─xxx
|    ├─...
|    ├─index.tsx
├─docs
├─node_modules
├─scripts
├─site
├─tests
├─typings
├─.antd-tools.config.js
├─.codecov.yml //CodeCov 用来报告测试中代码覆盖率的工具
├─.depslintrc.js
├─.dockerignore //构建 docker 镜像时忽略的文件
├─.editorconfig //代码风格的编辑器配置,需要搭配 Editorconfig 插件食用(自己编辑器安装)
├─.eslintignore
├─.eslintrc.js
├─.gitignore
├─.gitpod.yml //gitpod: github 的云 IDE
├─.jest.image.js
├─.jest.js
├─.jest.node.js
├─.jest.site.js
├─.npmignore //npm 发布时忽略的文件,没有此文件则使用 .gitignore,否则 .gitignore 失效
├─.prettierignore //Prettier(代码格式化插件)忽略的文件
├─.prettierrc //Prettier 格式化配置
├─.remarkrc.js //remark-lint: markdown 的 lint
├─.stylelintrc.json //stylelint
├─.travis.yml //Travis CI 持续集成
├─AUTHORS.txt
├─azure-pipelines.yml //Azure Pipelines 持续集成
├─CHANGELOG.en-US.md
├─CHANGELOG.zh-CN.md //更新日志
├─CNAME //别名记录,用于将多个域名映射到一个域名,方便服务器管理
├─CODE_OF_CONDUCT.md
├─CODEOWNERS
├─crowdin.yml //crowdin: 一个翻译平台
├─docker-compose.yml //docker 构建配置
├─Dockerfile.ui-test //docker-compose.yml 中用到的 docker 构建指令
├─index-with-locales.js
├─index.js
├─LICENSE
├─lighthouserc.js
├─package-lock.json
├─package.json
├─README-pt_BR.md
├─README-zh_CN.md
├─README.md
├─tsconfig.json
├─webpack.config.js

相关文章

网友评论

      本文标题:ant-design 源码根目录文件都是干嘛的

      本文链接:https://www.haomeiwen.com/subject/hhwwrktx.html