Skip to content
This repository has been archived by the owner on Jul 1, 2021. It is now read-only.

Commit

Permalink
bugfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mkloubert committed Nov 27, 2017
1 parent 9b0011c commit 9da8f09
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change Log (vs-deploy)

## 12.0.0 (November 27th, 2017; switch target, multi root support and module updates)
## 12.0.1 (November 27th, 2017; switch target, multi root support and module updates)

* added `autoSelectWorkspace` setting, which can select the current workspace by active text editor automatically
* added [Slack target](https://github.com/mkloubert/vs-deploy/wiki/target_slack)
Expand All @@ -17,6 +17,7 @@
* [node-enumerable](https://www.npmjs.com/package/node-enumerable)
* [pug](https://www.npmjs.com/package/pug)
* [typescript](https://www.npmjs.com/package/typescript)
* bugfixes

## 11.1.0 (November 20th, 2017; finished multi root support)

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vs-deploy",
"displayName": "Deploy",
"description": "Commands for deploying files of your workspace to a destination.",
"version": "12.0.0",
"version": "12.0.1",
"publisher": "mkloubert",
"engines": {
"vscode": "^1.18.0"
Expand Down Expand Up @@ -35169,4 +35169,4 @@
"uglify-js": "^2.8.23",
"uuid": "^3.0.1"
}
}
}
2 changes: 1 addition & 1 deletion src/values.ts
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ export function getBuildInValues(): ValueBase[] {
objs.push(new CodeValue({
name: 'workspaceRoot',
type: "code",
code: "require('./workspace').workspace.getRootPath()",
code: "require('./workspace').getRootPath()",
}));
}

Expand Down

0 comments on commit 9da8f09

Please sign in to comment.