Skip to content

Commit 4fcbaf6

Browse files
author
Aleksey Okhrimenko
committed
bug fix
1 parent 6d0f075 commit 4fcbaf6

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to the "arrr" extension will be documented in this file.
44

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

7+
## 0.0.2
8+
9+
- Bug fix of command key
10+
711
## 0.0.1
812

913
- Initial release

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "arrr",
33
"displayName": "arrr",
44
"description": "The extension provides refactoring tools for your Angular codebase",
5-
"version": "0.0.1",
5+
"version": "0.0.2",
66
"publisher": "obenjiro",
77
"engines": {
88
"vscode": "^1.47.0"
@@ -19,13 +19,13 @@
1919
],
2020
"activationEvents": [
2121
"onLanguage:html",
22-
"onCommand:arrr.extract-to-folder"
22+
"onCommand:extension.arrr.extract-to-folder"
2323
],
2424
"main": "./out/extension.js",
2525
"contributes": {
2626
"commands": [
2727
{
28-
"command": "arrr.extract-to-folder",
28+
"command": "extension.arrr.extract-to-folder",
2929
"title": "Extract Angular component to folder"
3030
}
3131
]

0 commit comments

Comments
 (0)