Skip to content
This repository was archived by the owner on Jan 29, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions .github/workflows/build_extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,17 @@ jobs:
run: npm install

- name: Run build script
run: npm run avr-utils
run: npx tsc
# run: npm run avr-utils

- name: Rename application entry file
run: sed -i "s#./extension.js#out/main.js#" package.json
# - name: Rename application entry file
# run: sed -i "s#src/extension.js#out/main.js#" package.json

- name: Package Extension
run: node_modules/@vscode/vsce/vsce pack
run: npx vsce pack

- name: Save artifact
uses: actions/upload-artifact@v4
with:
name: extension-latest
name: extension-latest-${{ github.sha }}
path: "*.vsix"
2 changes: 0 additions & 2 deletions .github/workflows/release-drafter-setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,5 @@ jobs:
# with:
# config-name: my-config.yml
# disable-autolabeler: true
with:
version-resolver: node
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6 changes: 4 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
/src/storage/data.json
/out/*.*
/out/storage/*
!out/storage/device_and_file.json
!out/storage/.file
# !out/storage/device_and_file.json
# !out/storage/.file
.vscode/settings.json
dist/**
!dist/storage/*
5 changes: 3 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,13 @@
"<node_internals>/**"
],
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
"--extensionDevelopmentPath=${workspaceFolder}",
"--trace-warnings"
],
"outFiles": [
"${workspaceFolder}/out/**/*.js"
],
"preLaunchTask": "npm: esbuild"
"preLaunchTask": "npm: tsc"
}
]
}
2 changes: 1 addition & 1 deletion .vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ vsc-extension-quickstart.md
folders.json
src/**
node_modules/**
out/storage/data.json
# out/storage/data.json
#storage/data.json
**/*.vsix
File renamed without changes.
39 changes: 0 additions & 39 deletions extension.js

This file was deleted.

Loading
Loading