vue2.x源码解读——代码目录结构
2023-03-10 03:08:23 14 举报
AI智能生成
vue2.7.14代码目录结构
作者其他创作
大纲/内容
.editorconfig
编辑器配置|便于协作时不同编辑器之间保证代码风格一致
https://editorconfig.org/
.git-blame-ignore-revs
忽略追溯视图中的提交|不在github的blame页面进行显示
https://docs.github.com/en/repositories/working-with-files/using-files/viewing-a-file
.github
CODE_OF_CONDUCT.md
参与代码贡献的行为准则
COMMIT_CONVENTION.md
提交commit信息规范
CONTRIBUTING.md
参与代码贡献的指南
FUNDING.yml
赞助信息
ISSUE_TEMPLATE
issue的模板目录
config.yml
issue配置文件
PULL_REQUEST_TEMPLATE.md
Pull和Request指南
workflows
工作流配置目录
ci.yml
持续集成脚本 | 代码编译打包
release-tag.yml
发布生产版本
.gitignore
git 忽略配置文件
https://docs.github.com/en/rest/gitignore?apiVersion=2022-11-28
.prettierrc
代码格式化配置文件
https://www.prettier.cn/
BACKERS.md
捐赠或者赞助信息
CHANGELOG.md
版本更新日志
LICENSE
开源版本协议
README.md
项目介绍文件
api-extractor.json
api提取器配置文件
api-extractor.tsconfig.json
api提取器配置文件
benchmarks
big-table
表格渲染
dbmon
重绘
reorder-list
重新排序列表渲染
ssr
服务端渲染
svg
svg渲染
uptime
更新渲染
compiler-sfc
编译单文件
dist
制品输出目录
examples
应用示例
package.json
项目的描述文件,存储所有已安装软件包的名称和版本的地方
http://dev.nodejs.cn/learn/the-package-json-guide
packages
compiler-sfc
编译单文件
server-renderer
服务端渲染
template-compiler
模板编译
pnpm-lock.yaml
版本依赖的锁定文件
https://pnpm.io/zh/motivation
pnpm-workspace.yaml
工作空间的配置文件 | monorepo
https://pnpm.io/zh/workspaces
scripts
构建脚本目录
src
compiler
编译相关
core
核心代码
platforms
平台支持
shared
共享代码
types
类型声明
v3
从vue3移植过来的一些代码
test
测试用例
tsconfig.json
ts配置文件
types
类型文件声明目录
vitest.config.ts
vite配置文件
0 条评论
下一页