Add basic build instructions (#830)

* Add basic build instructions

* Create `CONTRIBUTING.md`

---------

Co-authored-by: Brad Cornes <hello@bradley.dev>
master
Florian Stellbrink 2023-08-22 15:18:40 +02:00 committed by GitHub
parent d5268fd41e
commit 0964dbfe4a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 19 additions and 0 deletions

19
.github/CONTRIBUTING.md vendored 100644
View File

@ -0,0 +1,19 @@
# Contributing
Thanks for your interest in contributing to Tailwind CSS IntelliSense! Please take a moment to review this document **before submitting a pull request**.
## Pull requests
**Please ask first before starting work on any significant new features.**
It's never a fun experience to have your pull request declined after investing a lot of time and effort into a new feature. To avoid this from happening, we request that contributors create [a feature request](https://github.com/tailwindlabs/tailwindcss/discussions/new?category=ideas) to first discuss any significant new ideas.
## Building the Extension
You can build the VSIX package by running these commands in the project root.
```bash
npm install
npm run bootstrap
npx lerna run package --scope=vscode-tailwindcss
```