diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6135b68..f5a89a5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -32,7 +32,7 @@ jobs: - uses: actions/cache@v2 with: path: | - ./bazel-vscode-0.0.4.vsix + ./bazel-vscode-0.0.5.vsix key: ${{ env.cache-name }}-${{ github.run_id }} publish: needs: [build] @@ -41,7 +41,7 @@ jobs: steps: - uses: actions/cache@v2 with: - path: ./bazel-vscode-0.0.4.vsix + path: ./bazel-vscode-0.0.5.vsix key: ${{ env.cache-name }}-${{ github.run_id }} - name: Create tag if: contains(github.ref, 'master') @@ -67,8 +67,8 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ steps.create_release.outputs.upload_url }} - asset_path: ./bazel-vscode-0.0.4.vsix - asset_name: bazel-vscode-0.0.4.vsix + asset_path: ./bazel-vscode-0.0.5.vsix + asset_name: bazel-vscode-0.0.5.vsix asset_content_type: application/octet-stream - name: Publish Release if: contains(github.ref, 'master') diff --git a/package-lock.json b/package-lock.json index e2dfe0f..a407f1e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "bazel-vscode", - "version": "0.0.4", + "version": "0.0.5", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 0aae7b8..ef516b3 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "publisher": "salesforce", "repository": "https://github.com/salesforce/bazel-vscode", "description": "bazel-vscode", - "version": "0.0.4", + "version": "0.0.5", "engines": { "vscode": "^1.46.0" }, @@ -29,6 +29,30 @@ ".*\\.bazelproject$", ".*\\.java$" ], + "configuration": { + "title": "BJLS", + "properties": { + "java.import.bazel.enabled": { + "type": "boolean", + "default": true, + "description": "Enable/disable the Bazel importer.", + "scope": "window" + }, + "java.bjls.log.level": { + "type": "string", + "enum": ["debug", "warn", "info", "error"], + "default": "info", + "description": "The severity of logging messages (debug, warn, info, error)", + "scope": "window" + }, + "java.bjls.log.extended": { + "type": "boolean", + "default": true, + "description": "Enable/disable the extended logging into /bef.log file.", + "scope": "window" + } + } + }, "commands": [ { "command": "bazelimport.menus.viewtitle",