Skip to content

Commit d449cf5

Browse files
RubenHalmanRubenHalman
authored andcommitted
patch(vsx): updates fast-xml-parser
1 parent aea5e65 commit d449cf5

3 files changed

Lines changed: 1 addition & 11 deletions

File tree

packages/vsx/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
},
1111
"icon": "media/lightningflow.png",
1212
"description": "A VS Code Extension for analysis and optimization of Salesforce Flows. Scans metadata for 20+ issues such as hardcoded IDs, unsafe contexts, inefficient SOQL/DML operations, recursion risks, and missing fault handling. Supports auto-fixes, rule configurations, and tests integration.",
13-
"version": "3.4.0",
13+
"version": "3.4.1",
1414
"engines": {
1515
"vscode": "^1.92.0"
1616
},

packages/vsx/src/services/message-service.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,6 @@ export default class MessageService {
6666
vscode.commands.executeCommand('flowscanner.configRules');
6767
}
6868

69-
openVsxReviews(_query: any) {
70-
const reviewUrl =
71-
"https://open-vsx.org/extension/ForceConfigControl/lightning-flow-scanner-vsx/reviews";
72-
vscode.env.openExternal(vscode.Uri.parse(reviewUrl));
73-
}
74-
7569
openReviewPage(query: any) {
7670
const url = query.url || "https://marketplace.visualstudio.com/items?itemName=ForceConfigControl.lightning-flow-scanner-vsx&ssr=false#review-details";
7771
vscode.env.openExternal(vscode.Uri.parse(url));

packages/vsx/webviews/components/Sidebar.svelte

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -203,14 +203,10 @@
203203
204204
function rateAndRedirect(rating) {
205205
selectedRating = rating;
206-
if (isVSCode) {
207206
tsvscode.postMessage({
208207
type: "openReviewPage",
209208
url: "https://marketplace.visualstudio.com/items?itemName=ForceConfigControl.lightning-flow-scanner-vsx"
210209
});
211-
} else {
212-
window.open("https://open-vsx.org/extension/ForceConfigControl/lightning-flow-scanner-vsx/reviews", "_blank");
213-
}
214210
}
215211
216212
function openDocumentation() { tsvscode.postMessage({ type: "openDocumentation" }); }

0 commit comments

Comments
 (0)