Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Aleksey Okhrimenko committed Aug 18, 2020
1 parent 6d0f075 commit 4fcbaf6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to the "arrr" extension will be documented in this file.

Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.

## 0.0.2

- Bug fix of command key

## 0.0.1

- Initial release
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "arrr",
"displayName": "arrr",
"description": "The extension provides refactoring tools for your Angular codebase",
"version": "0.0.1",
"version": "0.0.2",
"publisher": "obenjiro",
"engines": {
"vscode": "^1.47.0"
Expand All @@ -19,13 +19,13 @@
],
"activationEvents": [
"onLanguage:html",
"onCommand:arrr.extract-to-folder"
"onCommand:extension.arrr.extract-to-folder"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "arrr.extract-to-folder",
"command": "extension.arrr.extract-to-folder",
"title": "Extract Angular component to folder"
}
]
Expand Down

0 comments on commit 4fcbaf6

Please sign in to comment.