Skip to content

Commit 48bacfb

Browse files
committed
Merge branch 'main' of github.com:penja/scalr-vscode
2 parents a3ffe13 + 7f33333 commit 48bacfb

File tree

7 files changed

+165
-90
lines changed

7 files changed

+165
-90
lines changed

.vscode/launch.json

+10-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,16 @@
1010
"type": "extensionHost",
1111
"request": "launch",
1212
"args": ["--extensionDevelopmentPath=${workspaceFolder}"],
13-
"outFiles": ["${workspaceFolder}/dist/**/*.js"],
13+
"outFiles": ["${workspaceFolder}/dist/**/*-node.js"],
14+
"preLaunchTask": "${defaultBuildTask}"
15+
},
16+
{
17+
"name": "Run Web Extension ",
18+
"type": "extensionHost",
19+
"debugWebWorkerHost": true,
20+
"request": "launch",
21+
"args": ["--extensionDevelopmentPath=${workspaceFolder}", "--extensionDevelopmentKind=web"],
22+
"outFiles": ["${workspaceFolder}/dist/**/*-web.js"],
1423
"preLaunchTask": "${defaultBuildTask}"
1524
}
1625
]

.vscode/tasks.json

+8
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,14 @@
3232
"label": "tasks: watch-tests",
3333
"dependsOn": ["npm: watch", "npm: watch-tests"],
3434
"problemMatcher": []
35+
},
36+
{
37+
"type": "npm",
38+
"script": "compile",
39+
"group": {
40+
"kind": "build"
41+
},
42+
"problemMatcher": ["$ts-webpack", "$tslint-webpack"]
3543
}
3644
]
3745
}

CHANGELOG.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
66

77
## [Unreleased]
88

9+
## [0.0.5]
10+
11+
### Features
12+
13+
- Added support for the web version of the extension ([#23](https://github.com/Scalr/scalr-vscode/issues/23))
14+
915
## [0.0.4]
1016

1117
### Fixed
@@ -38,7 +44,8 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
3844

3945
---
4046

41-
[Unreleased]: https://github.com/Scalr/scalr-vscode/compare/v0.0.4...HEAD
47+
[Unreleased]: https://github.com/Scalr/scalr-vscode/compare/v0.0.5...HEAD
48+
[0.0.5]: https://github.com/Scalr/scalr-vscode/releases/tag/v0.0.5
4249
[0.0.4]: https://github.com/Scalr/scalr-vscode/releases/tag/v0.0.4
4350
[0.0.3]: https://github.com/Scalr/scalr-vscode/releases/tag/v0.0.3
4451
[0.0.2]: https://github.com/Scalr/scalr-vscode/releases/tag/v0.0.2

package-lock.json

+72-79
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)