LaTeX-Workshop/CONTRIBUTING.md
2021-12-01 09:21:23 +09:00

1.8 KiB

Contributing to LaTeX-Workshop

Please notice that we can reject any kinds of pull requests. Especially, we will reject any requests for changes on default values of settings. We also reject requests adding additional recipes to default settings.

Quickstart

git clone https://github.com/James-Yu/LaTeX-Workshop.git
cd ./LaTeX-Workshop
npm ci
code -n .

Press F5 in vscode to start the development version in debug mode.

Prerequisites for building the extension

Make sure you have installed:

  • node.js v14
  • npm v6
  • the eslint extension for VS Code (recommended)

Then run

npm ci

inside the extension workspace to download the node modules needed to build the extension.

Development

To lint changes, run

npm run lint

To compile, run

npm run compile

To build a release image, run

npm run release

To run tests, run

npm run test

To run a specific test, run

npm run test build/fixture001

Testing and debugging the extension

In VS Code, simply press F5 (or run Debug: Start Debugging from the command palette) and a new window will pop up where you can test the extension.

Documents

You can refer to: