Skip to content
This repository was archived by the owner on Oct 1, 2024. It is now read-only.

Merge release v0.3.2 to master branch #1093

Merged
merged 8 commits into from
Aug 26, 2020
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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Change Log
All notable changes to this project will be documented in this file.

## Version 0.3.2

- Release date: August 26, 2020

### Changed
- Update dependencies.

## Version 0.3.1

- Release date: June 9, 2020
Expand Down
4 changes: 2 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,9 @@ gulp.task("test", (done) => {
// and restore extensionDependencies after test exited.
removeExtensionDependencies();

const child = childProcess.spawn("node", ["./node_modules/vscode/bin/test"], {
const child = childProcess.spawn("node", ["./out/test/runTest"], {
cwd: __dirname,
env: Object.assign({}, process.env, { CODE_TESTS_WORKSPACE: path.join(__dirname, "test/resources/blink") }),
env: Object.assign({}, process.env),
});

child.stdout.on("data", (data) => {
Expand Down
Loading