Skip to content
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

Fix the extension not to be shown on the menu nor command pallete #116

Merged
merged 3 commits into from
Apr 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ All notable changes to the "lwc-builder" extension will be documented in this fi

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

## [Unreleased]
## [0.1.31] - 2024-04-11

- Update `when` criteria of explore and command pallete with sf command `sf:project_opened`

## [0.1.5] - 2021-08-21

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ This extension is distributed under the [BSD-3](https://opensource.org/licenses/
## Contribution

Anyone is welcome to contribute.
Please follow [CONTRIBUTING.md](https://github.com/developerforce/lwc-builder/blob/main/CONTRIBUTING.md).
Please follow [CONTRIBUTING.md](https://github.com/forcedotcom/lwc-builder/blob/main/CONTRIBUTING.md).

See also [lwc-builder-ui](https://github.com/developerforce/lwc-builder-ui).
See also [lwc-builder-ui](https://github.com/forcedotcom/lwc-builder-ui).
lwc-builder is a VSCode Extension that launches lwc-builder-ui in VSCode context.
Binary file added generated-assets/lwc-builder-0.1.31.vsix
Binary file not shown.
14 changes: 6 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,18 @@
"displayName": "LWC Builder",
"publisher": "ninoish",
"description": "VSCode extension to easily build LWC on the UI",
"version": "0.1.30",
"version": "0.1.31",
"license": "BSD-3-Clause",
"author": "@albarivas",
"repository": "https://github.com/developerforce/lwc-builder",
"repository": "https://github.com/forcedotcom/lwc-builder",
"icon": "images/lwc-builder-icon.png",
"engines": {
"vscode": "^1.60.0"
"vscode": "^1.82.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:lwc-builder.openLWCBuilder"
],
"activationEvents": [],
"main": "./out/src/extension.js",
"contributes": {
"commands": [
Expand All @@ -30,13 +28,13 @@
{
"command": "lwc-builder.openLWCBuilder",
"title": "Open LWC Builder",
"when": "explorerResourceIsFolder && resourceFilename == lwc && sfdx:project_opened"
"when": "explorerResourceIsFolder && resourceFilename == lwc && sf:project_opened"
}
],
"commandPalette": [
{
"command": "lwc-builder.openLWCBuilder",
"when": "sfdx:project_opened"
"when": "sf:project_opened"
}
]
}
Expand Down
Loading