Skip to content

Commit 2f36476

Browse files
chore: prepare 0.5.0 release (#198)
1 parent 50f5f85 commit 2f36476

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "salesforcedx-vscode-mobile",
33
"displayName": "%extension.displayName%",
44
"description": "%extension.description%",
5-
"version": "0.4.0",
5+
"version": "0.5.0",
66
"publisher": "salesforce",
77
"engines": {
88
"vscode": "^1.77.0",

src/utils/constants.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export const ESLINT_RC_FILE = '.eslintrc.json';
1616
// Default eslint 9 flat configuration file
1717
export const ESLINT_CONFIG_FILE = 'eslint.config.js';
1818
export const ESLINT_CONFIG_FILE_CONTENT_WITH_USER_CONFIG = `
19-
const { defineConfig } = require("eslint/config");
19+
const { defineConfig } = require('eslint/config');
2020
const eslintConfigMobile = require('./eslint.config.mobile');
2121
const eslintConfigUser = require('./eslint.config.user');
2222
@@ -26,7 +26,7 @@ module.exports = defineConfig([
2626
]);
2727
`;
2828
export const ESLINT_CONFIG_FILE_CONTENT_WITHOUT_USER_CONFIG = `
29-
const { defineConfig } = require("eslint/config");
29+
const { defineConfig } = require('eslint/config');
3030
const eslintConfigMobile = require('./eslint.config.mobile');
3131
3232
module.exports = defineConfig([
@@ -38,9 +38,9 @@ module.exports = defineConfig([
3838
export const ESLINT_CONFIG_MOBILE_FILE = 'eslint.config.mobile.js';
3939
export const ESLINT_CONFIG_MOBILE_FILE_CONTENT = `
4040
const eslintJs = require('@eslint/js');
41-
const { defineConfig } = require("eslint/config");
42-
const lwcMobilePlugin = require("@salesforce/eslint-plugin-lwc-mobile");
43-
const lwcGraphAnalyzerPlugin = require("@salesforce/eslint-plugin-lwc-graph-analyzer");
41+
const { defineConfig } = require('eslint/config');
42+
const lwcMobilePlugin = require('@salesforce/eslint-plugin-lwc-mobile');
43+
const lwcGraphAnalyzerPlugin = require('@salesforce/eslint-plugin-lwc-graph-analyzer');
4444
4545
module.exports = defineConfig([
4646
// Salesforce LWC Mobile plugin configuration

0 commit comments

Comments
 (0)