From d6857adcf8f037b843d1c672b2b43ea740a1e28d Mon Sep 17 00:00:00 2001 From: amelianoir Date: Sat, 15 Nov 2025 14:14:19 +0100 Subject: [PATCH 1/3] Create launch.json --- .vscode/launch.json | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..f7d99a4 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,35 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + + + { + "args": [ + "--extensionDevelopmentPath=${workspaceFolder}" + ], + "name": "Launch Extension", + "outFiles": [ + "${workspaceFolder}/out/**/*.js" + ], + "preLaunchTask": "npm", + "request": "launch", + "type": "extensionHost" + }, + { + "command": "npm start", + "name": "Run npm start", + "request": "launch", + "type": "node-terminal" + }, + { + "type": "node-terminal", + "name": "Run Script: start", + "request": "launch", + "command": "npm run start", + "cwd": "${workspaceFolder}" + } + ] +} \ No newline at end of file From cb2ca4bdfc71ee52b3d456f2576616605f5987dc Mon Sep 17 00:00:00 2001 From: amelianoir Date: Sat, 15 Nov 2025 14:15:02 +0100 Subject: [PATCH 2/3] Create npm-gulp.yml --- .github/workflows/npm-gulp.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/npm-gulp.yml diff --git a/.github/workflows/npm-gulp.yml b/.github/workflows/npm-gulp.yml new file mode 100644 index 0000000..f8aa8bb --- /dev/null +++ b/.github/workflows/npm-gulp.yml @@ -0,0 +1,28 @@ +name: NodeJS with Gulp + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [18.x, 20.x, 22.x] + + steps: + - uses: actions/checkout@v4 + + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v4 + with: + node-version: ${{ matrix.node-version }} + + - name: Build + run: | + npm install + gulp From 3450e8c59b821aa89829edc397ad827300827cc0 Mon Sep 17 00:00:00 2001 From: amelianoir Date: Sat, 15 Nov 2025 15:06:06 +0100 Subject: [PATCH 3/3] Create settings.json --- .vscode/settings.json | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..6dda266 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,6 @@ +{ + "[ruby]": { + "diffEditor.codeLens": true, + "editor.formatOnType": true + } +} \ No newline at end of file