Skip to content

Latest commit

 

History

History
81 lines (51 loc) · 1.75 KB

CONTRIBUTING.md

File metadata and controls

81 lines (51 loc) · 1.75 KB

Contributing

Excited to hear that you are interested in contributing to this project! Thanks!

Documentations

Documentations are now moved to slidevjs/docs repo.

Setup (in your browser)

You can contribute through a development environment in your browser by clicking the following button:

Open in Gitpod

Setup (locally)

This project uses pnpm to manage the dependencies, install it if you haven't via

npm i -g pnpm

Clone this repo to your local machine and install the dependencies.

pnpm install

Development

To build all the packages at once, run the following command on the project root

pnpm build

Build with watch mode

pnpm dev

Run Demo

To run Slidev locally, you can run

pnpm demo:dev

Or with the real-world example Composable Vue:

pnpm demo:composable-vue

The server will restart automatically every time the builds get updated.

Project Structure

Monorepo

We use monorepo to manage multiple packages

packages
  slidev/          - main package entry, holds the code on Node.js side
  client/          - main frontend app
  parser/          - parser for Slidev's extended Markdown format
  create-app/      - scripts and template for `npm init slidev`
  create-theme/    - scripts and template for `npm init slidev-theme`
  theme-*/         - official themes

Code Style

Don't worry about the code style as long as you install the dev dependencies. Git hooks will format and fix them for you on committing.

Thanks

Thank you again for being interested in this project! You are awesome!