Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 1.22 KB

CONTRIBUTING.md

File metadata and controls

37 lines (25 loc) · 1.22 KB

Contributing

Suggestions, bug reports, and pull requests welcome.

About This Extension

This extension uses the TextMate language definition from https://github.com/kotfu/Bunch.tmbundle/blob/main/Syntaxes/Bunch.tmLanguage. This language definition is copied and committed here when it is updated.

Prerequisites

In order to publish this extension you need to:

  • Install Node.js
  • Use npm to install @vscode/vsce
    $ npm install @vscode/vsce
    

Publishing a Release

To make it easier for users to find and install, this extension is published to the Visual Studio Code Marketplace. Publishing Extensions explains the details of how it works and how to do it.

Here's the process:

  1. Commit all your changes and push them to github
  2. Decide on the new version for the release
  3. Update CHANGELOG.md with the new version and commit it
  4. Publish to the VSCode Marketplace with:
    $ npx vsce publish {version}
    
    This will update package.json with the new version number and create a git tag for the release
  5. Push the repo to github