All notable changes to the "coderoad-vscode" extension will be documented in this file.
Check Keep a Changelog for recommendations on how to structure this file.
- Initial release
- Improvements to error handling
- Validate Git installed on startup
- Validate Git remote can connect on tutorial selection
- Fix component translation issues
- Improve error page
- Tutorial dependency validation in tutorial config. See an example below
{
"config": {
"dependencies": [
{
"name": "node", // command line process to run
"version": "^10", // see node-semver for options
"message": "An optional message to display if the validation fails"
},
{
"name": "npm",
"version": ">5"
}
]
}
}