Skip to content

Commit

Permalink
Version 1.3.24
Browse files Browse the repository at this point in the history
  • Loading branch information
ma-zal committed Jul 21, 2023
2 parents bd9f8e5 + 54b9a04 commit 3848de9
Show file tree
Hide file tree
Showing 20 changed files with 2,774 additions and 1,182 deletions.
21 changes: 10 additions & 11 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,6 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "attach",
"name": "Language Server",
"port": 6009
},
{
"name": "Run Extension",
"type": "extensionHost",
Expand All @@ -24,18 +18,23 @@
"preLaunchTask": "npm: watch"
},
{
"name": "Extension Tests",
"name": "Test Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"internalConsoleOptions": "openOnSessionStart",
"args": [
"--disable-extensions",
"--extensionDevelopmentPath=${workspaceFolder}",
"--extensionTestsPath=${workspaceFolder}/test"
"--extensionTestsPath=${workspaceFolder}/out/test/suite/index"
],
"outFiles": ["${workspaceFolder}/out/**/*.js"],
"preLaunchTask": "npm: compile"

"outFiles": ["${workspaceFolder}/out/test/**/*.js"]
},
{
"type": "node",
"request": "attach",
"name": "Language Server",
"port": 6009
}
]
}
7 changes: 6 additions & 1 deletion .vscodeignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
.vscode/**
.vscode-test/**
.github/**
test/**
out/test/**
out/types/**
local
.gitignore
jsconfig.json
vsc-extension-quickstart.md
.eslintrc.json
**/*.ts
**/tsconfig.json
src/**
resources/readme/**
resources/extension-icon.png
resources/imt-icon.svg
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
Change Log
==========

1.3.24
------

### Fixed

- Error during app import (issue #21)
- Fail to save file kept open during VS Code restart

### Changes

- Keep original indent of JSON files. Do not execute the auto format automatically.
- Update dependencies `request-light`, `uuid`, `vscode-json-languageservice`, `vscode-languageclient`, `vscode-languageserver`, `tempy`

1.3.22
------

Expand Down
Loading

0 comments on commit 3848de9

Please sign in to comment.