Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.28 KB

RELEASING.md

File metadata and controls

30 lines (22 loc) · 1.28 KB

HOW TO PUBLISH PROJECT:

The SLDS Validator for Visual Studio Code gets published to the Visual Studio Marketplace, where it is downloaded by users.

Update Validator

  1. Make code changes
  2. Update CHANGELOG with description of changes
  3. Update semver in package.json as appropriate
  4. Run npm install to update package-lock.json with new semver
  5. Run vsce package to package new validator and test it

Publish Validator

  1. Obtain Personal Access Token for publisher 'salesforce' by contacting current member of project development team
  2. Run vsce publish to publish new version of validator to Marketplace, entering in access token
  3. Verify extension listing is updated at Marketplace link above

Create Git Tag

Once latest changes are merged in:

  1. Pull down the latest master
  2. Create a git tag using git tag vMajor.Minor.Patch
  3. Push up the tag using git push --tags
  4. Create a GitHub release with the newly pushed tag here: https://github.com/forcedotcom/salesforcedx-vscode-slds/releases/new
  5. Release title should be Release vMajor.Minor.Patch
  6. Release description should be the latest changelog entry (from above)
  7. Upload the validator VSIX file as part of the release