Skip to content

Commit 464b622

Browse files
authored
Merge pull request #244 from coderoad/publish
Publish
2 parents 18f3cf6 + 35c470f commit 464b622

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

Diff for: CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,10 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
77
## [0.1.0]
88

99
- Initial release
10+
11+
## [0.2.0]
12+
13+
- Improvements to error handling
14+
- Validate Git installed on startup
15+
- Validate git remote can connect on tutorial selection
16+
- Fix component translation issues

Diff for: README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
![Visual Studio Marketplace Version](https://vsmarketplacebadge.apphb.com/version/Coderoad.coderoad.svg)
2+
![Visual Studio Marketplace Installs](https://vsmarketplacebadge.apphb.com/installs/Coderoad.coderoad.svg)
3+
![Visual Studio Marketplace Downloads](https://vsmarketplacebadge.apphb.com/downloads/Coderoad.coderoad.svg)
4+
15
# CodeRoad VSCode
26

37
CodeRoad is a VSCode extension that allows you to play interactive coding tutorials in your editor.
@@ -30,7 +34,6 @@ Install CodeRoad from [this link in the VSCode Marketplace](https://marketplace.
3034
- Node.js 12+ (10+ soon #237)
3135
- Git
3236

33-
3437
## Creating Tutorials
3538

3639
Build and share your own interactive tutorials.

Diff for: package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "coderoad",
3-
"version": "0.1.5",
3+
"version": "0.2.0",
44
"description": "Play interactive coding tutorials in your editor",
55
"keywords": [
66
"tutorial",
@@ -26,6 +26,7 @@
2626
"scripts": {
2727
"build": "./scripts/build.sh",
2828
"postinstall": "node ./node_modules/vscode/bin/install",
29+
"publish": "vsce publish -p $PERSONAL_ACCESS_TOKEN --packagePath ./releases/coderoad-$npm_package_version.vsix --baseContentUrl https://github.com/coderoad/coderoad-vscode/blob/master --baseImagesUrl https://github.com/coderoad/coderoad-vscode/blob/master",
2930
"lint": "eslint src/**/*ts",
3031
"package": "./scripts/package.sh",
3132
"storybook": "cd web-app && npm run storybook",

0 commit comments

Comments
 (0)