tailwind-ctp-intellisense @master -
refs -
log -
-
https://git.jolheiser.com/tailwind-ctp-intellisense.git
Add basic build instructions (#830)
* Add basic build instructions
* Create `CONTRIBUTING.md`
---------
Co-authored-by: Brad Cornes <hello@bradley.dev>
Signature
-----BEGIN PGP SIGNATURE-----
wsBcBAABCAAQBQJk5LWwCRBK7hj4Ov3rIwAAinwIAHFKNklMsyT1yiIuzNN5BHHZ
/A7IYYdPJ8DhD2hHaBouJJrw6R/jS16dPYQBKhaZL8nu42M1qLtyHztX/1GEEjxE
AYMAA3Cg+nsfVxkN5KzcYNGTDq3yPHsmI7nfmG4RmCLyWFw9k220YIzI8bRGlAO8
RRh1scoE/lDWdkRQXUP4QB7j+8WjQ4ViHD6n1dueFaXEVzEin3YdWFo7VesSF8Gc
FmNWPf+kGuNLHOSiBmxRdEv+KSPqV4TKEkj8pKtxWhx+0RYDMhws0YbBApK8u77m
/akABVkHw/BNl9sOH0fBPAVP/vT2BVoUupXeTaGuk7rS6i28cqMbcEsQZSUvUvs=
=YBWB
-----END PGP SIGNATURE-----
diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md
new file mode 100644
index 0000000000000000000000000000000000000000..9caf270a9309935a7f50ce956ec70b2ebb553933
--- /dev/null
+++ b/.github/CONTRIBUTING.md
@@ -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
+```