Comparing version 0.4.5 to 0.5.0
{ | ||
"name": "makecode", | ||
"version": "0.4.5", | ||
"version": "0.5.0", | ||
"description": "MakeCode (PXT) - web-cached build tool", | ||
@@ -40,8 +40,31 @@ "keywords": [ | ||
"devDependencies": { | ||
"@semantic-release/git": "^9.0.0", | ||
"@semantic-release/github": "^7.2.0", | ||
"@semantic-release/npm": "^7.0.9", | ||
"@semantic-release/release-notes-generator": "^9.0.1", | ||
"@types/node": "^12.7.5", | ||
"typescript": "^3.9.4" | ||
"semantic-release": "^17.3.0", | ||
"typescript": "^4.1.3" | ||
}, | ||
"dependencies": { | ||
"commander": "^5.1.0" | ||
}, | ||
"release": { | ||
"branch": "master", | ||
"plugins": [ | ||
"@semantic-release/commit-analyzer", | ||
"@semantic-release/release-notes-generator", | ||
"@semantic-release/github", | ||
"@semantic-release/npm", | ||
[ | ||
"@semantic-release/git", | ||
{ | ||
"assets": [ | ||
"package.json", | ||
"package-lock.json" | ||
] | ||
} | ||
] | ||
] | ||
} | ||
} |
@@ -9,2 +9,16 @@ # MKC - command line tool for MakeCode editors | ||
## Installation | ||
To install globally, run | ||
``` | ||
npm install -g makecode | ||
``` | ||
To update the client, | ||
``` | ||
npm install -u -g makecode | ||
``` | ||
## Usage | ||
@@ -47,6 +61,36 @@ | ||
## Local development | ||
This section describes how to build mkc itself. | ||
* install node.js | ||
* run | ||
``` | ||
npm install | ||
``` | ||
* start the build | ||
``` | ||
npm run watch | ||
``` | ||
## Releases | ||
A new release will be automatically generated by the build system based on these | ||
commit naming guidelines. | ||
* **feat:** A new feature | ||
* **fix:** A bug fix | ||
* **docs:** Documentation only changes | ||
style: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc) | ||
* **refactor:** A code change that neither fixes a bug nor adds a feature | ||
* **perf:** A code change that improves performance | ||
* **test:** Adding missing or correcting existing tests | ||
* **chore:** Changes to the build process or auxiliary tools and libraries such as documentation generation | ||
## TODO | ||
* [ ] allow updating `shims.d.ts`/`enums.d.ts` | ||
* [x] add `makecode --bump` | ||
@@ -53,0 +97,0 @@ ## Contributing |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
112383
108
7