Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 1.45 KB

README_DEVELOPMENT.md

File metadata and controls

38 lines (26 loc) · 1.45 KB

This is the development readme for Sublime Plugin

Installing a staging build

In order to install a staging build:

  1. Download the staging build "Pieces.sublime-package" from https://github.com/pieces-app/plugin_sublime/releases/tag/1.6.0
  2. Place it in the installed package directory
  • Windows: %APPDATA%\Sublime Text\Installed Packages
  • MacOS: ~/Library/Application Support/Sublime Text 3/Installed Packages
  • Linux: ~/.config/sublime-text/Installed Packages

Outlines the development set up and general practices

Setup:

  1. Open your terminal and change directory (cd) to
  • Windows: %APPDATA%\Sublime Text\Packages
  • MacOS: ~/Library/Application Support/Sublime Text 3/Packages
  • Linux: ~/.config/sublime-text/Packages
  1. run git clone https://github.com/pieces-app/plugin_sublime.git
  2. happy coding :)

Dependency management

You can manage dependencies two ways:

Trigger a Release

  • OPTIONAL: Create a message for the users (release notes) in the messages/<new version> and then configure it in the messages.json file
  • Update the _version.py with the appropriate version
  • git tag <new version> main
  • git push origin tag <new version>