Skip to content

Commit

Permalink
Merge pull request #10 from digitallyinduced/s0kil/fix-issue-7
Browse files Browse the repository at this point in the history
New Release - 0.4.0
  • Loading branch information
s0kil authored Apr 6, 2022
2 parents a70f58f + b0b7971 commit bfca63b
Show file tree
Hide file tree
Showing 13 changed files with 953 additions and 326 deletions.
31 changes: 27 additions & 4 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
// A launch configuration that launches the extension inside a new window
// 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
// A launch configuration that compiles the extension and then opens it inside a new window
{
"version": "0.2.0",
"configurations": [
Expand All @@ -10,6 +7,32 @@
"type": "extensionHost",
"request": "launch",
"args": ["--extensionDevelopmentPath=${workspaceFolder}"]
},
{
"type": "extensionHost",
"request": "launch",
"name": "Launch Client",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}"],
"outFiles": ["${workspaceRoot}/client/out/**/*.js"],
"preLaunchTask": {
"type": "npm",
"script": "bundle"
}
},
{
"type": "node",
"request": "attach",
"name": "Attach to Server",
"port": 6009,
"restart": true,
"outFiles": ["${workspaceRoot}/server/out/**/*.js"]
}
],
"compounds": [
{
"name": "Client + Server",
"configurations": ["Launch Client", "Attach to Server"]
}
]
}
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## 0.4.0

- Fix Syntax Highlighting Stops Working When Interpolating Haskell

## 0.3.0

- Fix Broken JavaScript/CSS Highlighting
Expand Down
146 changes: 79 additions & 67 deletions client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions client/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"dependencies": {
"vscode-html-languageservice": "^4.0.6",
"vscode-languageclient": "^7.0.0",
"vscode-languageserver-textdocument": "^1.0.1"
"vscode-html-languageservice": "^4.2.4",
"vscode-languageclient": "^8.0.0-next.14",
"vscode-languageserver-textdocument": "^1.0.4"
},
"devDependencies": {
"@types/vscode": "^1.57.0"
"@types/vscode": "^1.66.0"
},
"engines": {
"vscode": "^1.57.0"
"vscode": "^1.66.0"
}
}
Loading

0 comments on commit bfca63b

Please sign in to comment.