Contribution Guide
We always welcome everyone to contribute! Here is a guide for you.
Clone and Install Project
You should have Node.js and Git installed, and enabled corepack with corepack enable
.
Use Git to clone the project to the local, and install dependencies:
git clone git@github.com:vuepress-theme-hope/vuepress-theme-hope.git
pnpm i
Project File Structure
The project is a monorepo, managed by pnpm.
docs
: place the documentation of each plugin and theme, each subdirectory is a projectdemo
: theme demo projectpackages
: place the code of each plugin and theme, each subdirectory is a project
.
├── .github → GitHub config
├── .husky → husky config
│
├── demo → Demo projects
│
├── docs → document directory
│ ├── components → components plugin document
│ ├── lightgallery → lightgallery plugin document
│ ├── md-enhance → md-enhance plugin document
│ ├── search-pro → search-pro plugin document
│ └── theme → theme document
│
├── packages → project source code
│ ├── components → components plugin
│ ├── create → create-vuepress-theme-hope helper
│ ├── lightgallery → lightgallery plugin
│ ├── md-enhance → md-enhance plugin
│ ├── search-pro → search-pro plugin
│ ├── shared → shared file
│ └── theme → vuepress-theme-hope theme
│
├── scripts → command scripts
│
├── ... → some config files
│
├── LICENSE → License
├── package.json → root package.json
├── README.md → project intro
├── SECURITY.md → Security Policy
│
└── tsconfig.* → TypeScript config file
Document Modification
You can find the corresponding project in the docs directory, so you can modify the corresponding Markdown directly.
After ensuring that the pnpm lint
and pnpm lint:md
commands emit no errors, you can commit to GitHub to open a PR.
Preview Docs
Since the docs are using local themes and plugins, you need to build the local project through pnpm build
first.
To start previewing, cd to the right project under docs
directory, then run pnpm docs:vite-dev
(using vite) or pnpm docs:webpack-dev
(using webpack).
Project Modification
The structure of each project is as follows:
.
├── lib → compiled output file
│ │
│ ├── client → client-side compiled code
│ │
│ └── node → Node.js side compiled code
│
└── src → source file
│
├── client → client-side source code
│
├── node → Node.js side source code
│
└── shared → Shared files between node and client
VuePress is running both in client side and node side. Node side has node module like fs
, while client side is running in browser which has document
windows
navigator
etc. globals, you should be aware of where a piece of code is running.
client
directory stores code running in browsernode
directory stores code running in Node.jsshared
directory stores files that are used in both client and node, so code shall not reference any browser globals or node module.
For better performance, all plugins are packed and minified using rollup when they are published.
Project Development
Build project:
pnpm build
- Use rollup to bundle source files and minify them, and output results to
lib
folder - Use
rollup-plugin-copy
to copy other files tolib
folder
- Use rollup to bundle source files and minify them, and output results to
Develop project:
pnpm dev
- Use
tsc
to compile ts file tolib
folder - Use
cpx
to copy other files tolib
folder
- Use
Format project:
pnpm lint
It will format the project using prettier, eslint and stylelint.
If you modify Markdown, you also need to run the
pnpm lint:md
command.
Warning
Please do not mix build and dev commands as they compile in completely different ways.
You may need to execute the pnpm clean
command to clear previous command result.
Commit
The project uses husky
to add Git Hooks for verification:
In
precommit
stage: we uselint-staged
to check the changed code with the corresponding LinterThis means that you need to ensure that your code is formatted by the project requirements and can pass Linter tests.
In
commit-msg
stage: we usecommitlint
to verify the commit comment.This means that you need to ensure that your commit comments comply with Semantic
Tips
If you cannot pass the above Git Hooks, you will not be able to complete git commit
.
If you have already contributed something, but cannot make a commit and don't know how to fix it, you can add the --no-verify
flag when committing to bypass Git Hooks.