-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#2 Adds TS/JS Support #10
base: main
Are you sure you want to change the base?
Conversation
2342cff
to
992db85
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for adding this functionality. I just have a few requests, mostly due to how VS Code's extension publication tool.
@@ -4,6 +4,11 @@ | |||
|
|||
This file documents all notable changes to the VS Code Lizard extension. | |||
|
|||
## [1.0.2] — 2022-09-29 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
## [1.0.2] — 2022-09-29 | |
## Unreleased |
I'll update this with the correct version and release date when I cut a new release. I worry users might get confused if the change log says 1.0.2 but there isn't a v1.0.2 tag.
@@ -1,17 +1,18 @@ | |||
{ | |||
"name": "vscode-lizard", | |||
"version": "1.0.1", | |||
"version": "1.0.2", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"version": "1.0.2", | |
"version": "1.0.1", |
VS Code's publication tool will update this when I publish a new release.
"lockfileVersion": 2, | ||
"requires": true, | ||
"packages": { | ||
"": { | ||
"name": "vscode-lizard", | ||
"version": "1.0.1", | ||
"version": "1.0.2", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"version": "1.0.2", | |
"version": "1.0.1", |
VS Code's publication tool will update this when I publish a new release.
@@ -2,7 +2,7 @@ | |||
"name": "vscode-lizard", | |||
"displayName": "VS Code Lizard", | |||
"description": "Run complexity analysis on your code.", | |||
"version": "1.0.1", | |||
"version": "1.0.2", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"version": "1.0.2", | |
"version": "1.0.1", |
VS Code's publication tool will update this when I publish a new release.
This seems to be enough to enable TS/JS support.
Lemme know if I missed a spot.