Skip to content
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
33 changes: 33 additions & 0 deletions .github/workflows/bundle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Bundle extension

on:
push:
branches: [master]
tags: ['*']
pull_request:
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- uses: actions/setup-node@v3
with:
node-version: '16.8.0'

- uses: actions/cache@v3
with:
path: 'node_modules'
key: os-${{ runner.os }}-modules-${{ hashFiles('package-lock.json') }}

- run: npm ci

- run: npm run bundle

- uses: actions/upload-artifact@v3
with:
name: tarantool-lua-debugger-vscode
path: tarantool-lua-debugger-vscode-*.vsix
71 changes: 29 additions & 42 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,44 +1,31 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
],
"outFiles": [
"${workspaceFolder}/**/*.js"
],
// "preLaunchTask": "npm: watch"
},
{
"name": "Extension Installed",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}/../../.vscode/extensions/tomblind.local-lua-debugger-vscode-0.1.0"
],
"outFiles": [
"${workspaceFolder}/../../.vscode/extensions/tomblind.local-lua-debugger-vscode-0.1.0/**/*.js"
],
// "preLaunchTask": "npm: watch"
},
{
"name": "Server",
"type": "node",
"request": "launch",
"cwd": "${workspaceFolder}",
"program": "${workspaceFolder}/extension/debugAdapter.ts",
"args": [
"--server=4711"
],
"outFiles": [
"${workspaceFolder}/**/*.js"
]
}
]
"version": "0.2.0",
"configurations": [
{
"name": "Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
],
"outFiles": [
"${workspaceFolder}/**/*.js"
],
// "preLaunchTask": "npm: watch"
},
{
"name": "Server",
"type": "node",
"request": "launch",
"cwd": "${workspaceFolder}",
"program": "${workspaceFolder}/extension/debugAdapter.ts",
"args": [
"--server=4711"
],
"outFiles": [
"${workspaceFolder}/**/*.js"
]
}
]
}
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## Version 0.4.0
- Supported Tarantool

## Version 0.3.3
- Added support for utf8 identifier names
- Implemented pipe communication as an alternative to using stdio (use `"communication": "pipe"` under `"program"`)
Expand Down
Loading