Skip to content

Commit

Permalink
Update LSP and SLDS extension version (#90)
Browse files Browse the repository at this point in the history
Add release notes too
  • Loading branch information
ambreeen authored Sep 2, 2021
1 parent 2a5b8f1 commit 4e5c9d0
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
# Change Log
## [1.4.8]
Updates/enhancements:
- Update LSP: https://github.com/forcedotcom/salesforcedx-slds-lsp/releases/tag/v0.0.13

## [1.4.7]
Updates/enhancements:
- Enable suppression of SLDS warnings in HTML files for mobile via Quick Fix actions. Any HTML content that is between `<!-- sldsValidatorIgnore -->` and `<!-- sldsValidatorAllow -->` will now be exempt from SLDS validation. Furthermore `<!-- sldsValidatorIgnoreNextLine -->` will exempt the next immediate line from SLDS validation. By adding a `<!-- sldsValidatorIgnore -->` at the top of an HTML file with no `<!-- sldsValidatorAllow -->` anywhere else in that file, you can exempt the entire content of the file from SLDS validation.
- New preference flag for SLDS Validator extension. Now using `Salesforce-vscode-slds > Basic : Mobile Validation` flag you can globally enable or disable SLDS validation for mobile.
- Update LSP: https://github.com/forcedotcom/salesforcedx-slds-lsp/releases/tag/v0.0.12

## [1.4.6]
- Update LSP: https://github.com/forcedotcom/salesforcedx-slds-lsp/releases/tag/v0.0.11

Expand Down
2 changes: 1 addition & 1 deletion client/src/sldsLanguageClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ function createServerPromise(context: ExtensionContext, outputChannel: OutputCha
}

args.push('-jar');
args.push(path.resolve(context.extensionPath, 'lsp-0.0.12-executable.jar'));
args.push(path.resolve(context.extensionPath, 'lsp-0.0.13-executable.jar'));
args.push(`--PORT=${port.toString()}`);

let process = child_process.spawn(javaExecutablePath, args, options);
Expand Down
Binary file not shown.
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "SLDS Validator",
"publisher": "salesforce",
"description": "Salesforce Lightning Design System",
"version": "1.4.7",
"version": "1.4.8",
"aiKey": "7344b284-73e5-420e-b680-73333da3e067",
"icon": "images/slds-icon.png",
"preview": true,
Expand Down

0 comments on commit 4e5c9d0

Please sign in to comment.