Skip to content

Latest commit

 

History

History
58 lines (38 loc) · 921 Bytes

VERSIONING.md

File metadata and controls

58 lines (38 loc) · 921 Bytes

DateBox Versioning

This document explains how to change the version of DateBox.

To bump the version and release

--> edit package.json

{
  "version" : "SemVer"
}

OR

# npm version [<new verson>|major|minor|patch]

THEN

# npm run build-latest
# npm run release

--> COMMIT AND TAG POINT ARE HERE

--> RESTART THE BUILDER SERVER, IF IT'S RUNNING!

  • The builderServer caches the source files - for the length of it's runtime. If you don't restart it, you will still be building old versions.

To up a version of a framework:

--> edit package.json

  "supports" : {
    "npm-package-name" : "version"
  }

To add a framework:

--> edit package.json

  "supports" : {
    "npm-package-name-of-framework" : "version-supported"
  },
  "prettyMap": {
    "filename-without-extension-in-modes-folder" : "Pretty Name of Framework"
  }