From 409d419b7051718c78d2b29e2f00d3553731eb28 Mon Sep 17 00:00:00 2001 From: Foxhoundn <8861481+Foxhoundn@users.noreply.github.com> Date: Fri, 24 Nov 2023 13:06:12 +0100 Subject: [PATCH 1/2] Update not in Github Actions --- .github/workflows/develop-build.yml | 2 +- .github/workflows/prvsix.yml | 2 +- .github/workflows/release.yml | 2 +- .vscode/settings.json | 21 +---------------- package.json | 35 +++++++---------------------- 5 files changed, 12 insertions(+), 50 deletions(-) diff --git a/.github/workflows/develop-build.yml b/.github/workflows/develop-build.yml index 5baab924..7d1193aa 100644 --- a/.github/workflows/develop-build.yml +++ b/.github/workflows/develop-build.yml @@ -35,7 +35,7 @@ jobs: run: echo "::set-output name=HEAD_COMMIT_MESSAGE::$(git show -s --format=%s)" - uses: actions/setup-node@v3 with: - node-version: 16.19.0 + node-version: 18.18.0 - name: Save release version to outputs id: save_release_version run: echo ::set-output name=version::$(node -pe "require('./package.json').version") diff --git a/.github/workflows/prvsix.yml b/.github/workflows/prvsix.yml index a7c10074..8c995ed8 100644 --- a/.github/workflows/prvsix.yml +++ b/.github/workflows/prvsix.yml @@ -35,7 +35,7 @@ jobs: run: echo "::set-output name=HEAD_COMMIT_MESSAGE::$(git show -s --format=%s)" - uses: actions/setup-node@v3 with: - node-version: 16.19.0 + node-version: 18.18.0 - name: Save release version to outputs id: save_release_version run: echo ::set-output name=version::$(node -pe "require('./package.json').version") diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a58190af..6f465362 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -34,7 +34,7 @@ jobs: run: echo "::set-output name=HEAD_COMMIT_MESSAGE::$(git show -s --format=%s)" - uses: actions/setup-node@v3 with: - node-version: 16.19.0 + node-version: 18.18.0 - name: Save release version to outputs id: save_release_version run: echo ::set-output name=version::$(node -pe "require('./package.json').version") diff --git a/.vscode/settings.json b/.vscode/settings.json index 6e2e40d0..559e4232 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -12,24 +12,5 @@ "docwriter.progress.trackTypes": true, "docwriter.hotkey.mac": "⌥ + .", "peacock.remoteColor": "#0b2016", - "typescript.tsdk": "node_modules/typescript/lib", - "workbench.colorCustomizations": { - "activityBar.activeBackground": "#184630", - "activityBar.background": "#184630", - "activityBar.foreground": "#e7e7e7", - "activityBar.inactiveForeground": "#e7e7e799", - "activityBarBadge.background": "#9259c6", - "activityBarBadge.foreground": "#e7e7e7", - "commandCenter.border": "#e7e7e799", - "sash.hoverBorder": "#184630", - "statusBar.background": "#0b2016", - "statusBar.foreground": "#e7e7e7", - "statusBarItem.hoverBackground": "#184630", - "statusBarItem.remoteBackground": "#0b2016", - "statusBarItem.remoteForeground": "#e7e7e7", - "titleBar.activeBackground": "#0b2016", - "titleBar.activeForeground": "#e7e7e7", - "titleBar.inactiveBackground": "#0b201699", - "titleBar.inactiveForeground": "#e7e7e799" - } + "typescript.tsdk": "node_modules/typescript/lib" } diff --git a/package.json b/package.json index db6a3c0b..f18d3734 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "qorus-vscode", "displayName": "Qorus Developer Tools", "description": "Qorus Integration Engine developer tools", - "version": "4.3.6", + "version": "4.3.7", "publisher": "qoretechnologies", "author": { "name": "Qore Technologies", @@ -11,9 +11,7 @@ "engines": { "vscode": "^1.47.0" }, - "extensionDependencies": [ - "qoretechnologies.qore-vscode" - ], + "extensionDependencies": ["qoretechnologies.qore-vscode"], "license": "SEE LICENSE IN LICENSE.txt", "homepage": "https://github.com/qoretechnologies/qorus-vscode", "repository": { @@ -23,10 +21,7 @@ "bugs": { "url": "https://github.com/qoretechnologies/qorus-vscode/issues" }, - "categories": [ - "Other", - "Snippets" - ], + "categories": ["Other", "Snippets"], "icon": "images/QorusDeveloperTools_Medium.png", "galleryBanner": { "color": "#333333", @@ -34,32 +29,18 @@ }, "quokka": { "babel": { - "presets": [ - "env" - ] + "presets": ["env"] } }, - "keywords": [ - "qore", - "qorus", - "ide", - "integration", - "engine" - ], - "activationEvents": [ - "onStartupFinished" - ], + "keywords": ["qore", "qorus", "ide", "integration", "engine"], + "activationEvents": ["onStartupFinished"], "main": "out/extension.js", "contributes": { "languages": [ { "id": "qmapper", - "aliases": [ - "Qorus Mapper" - ], - "extensions": [ - ".qmapper" - ], + "aliases": ["Qorus Mapper"], + "extensions": [".qmapper"], "configuration": "./syntaxes/qmapper.configuration.json" } ], From 5a55f17d2006f30d63e70d0d45efdfd85138ff1e Mon Sep 17 00:00:00 2001 From: Foxhoundn <8861481+Foxhoundn@users.noreply.github.com> Date: Fri, 24 Nov 2023 13:39:03 +0100 Subject: [PATCH 2/2] Use node 16 for tests --- .github/workflows/prvsix.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/prvsix.yml b/.github/workflows/prvsix.yml index 8c995ed8..a7c10074 100644 --- a/.github/workflows/prvsix.yml +++ b/.github/workflows/prvsix.yml @@ -35,7 +35,7 @@ jobs: run: echo "::set-output name=HEAD_COMMIT_MESSAGE::$(git show -s --format=%s)" - uses: actions/setup-node@v3 with: - node-version: 18.18.0 + node-version: 16.19.0 - name: Save release version to outputs id: save_release_version run: echo ::set-output name=version::$(node -pe "require('./package.json').version")