diff --git a/.travis.yml b/.travis.yml index 6bdf79f21..82bce1317 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,8 +6,7 @@ env: - URL=https://developer.salesforce.com/media/salesforce-cli/sfdx-linux-amd64.tar.xz before_install: -- openssl aes-256-cbc -K $encrypted_b1fbf710b918_key -iv $encrypted_b1fbf710b918_iv - -in assets/server.key.enc -out assets/server.key -d + - export SFDX_AUTOUPDATE_DISABLE=false - export SFDX_USE_GENERIC_UNIX_KEYCHAIN=true - export SFDX_DOMAIN_RETRY=300 diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 000000000..d1987c7ba --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,13 @@ +{ + // See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations. + // Extension identifier format: ${publisher}.${name}. Example: vscode.csharp + + // List of extensions which should be recommended for users of this workspace. + "recommendations": [ + + ], + // List of extensions recommended by VS Code that should not be recommended for users of this workspace. + "unwantedRecommendations": [ + + ] +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json index 3854bce31..93dfd7b8c 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -7,5 +7,6 @@ }, "terminal.integrated.env.windows": { "SFDX_SET_CLIENT_IDS": "sfdx-vscode" - } + }, + "eslint.nodePath": "c:\\Users\\945005\\.vscode\\extensions\\salesforce.salesforcedx-vscode-lwc-47.10.0\\node_modules" } \ No newline at end of file diff --git a/force-app/main/default/classes/myclass.cls b/force-app/main/default/classes/myclass.cls index 1e869cfcc..ff933ca88 100644 --- a/force-app/main/default/classes/myclass.cls +++ b/force-app/main/default/classes/myclass.cls @@ -4,6 +4,8 @@ public with sharing class myclass { } public String getAppVersion() { + system.System.debug('hellow'); return '1.0.0'; + } }