From 9da8f098c7a870cdfa57f89379a73ac724facf8e Mon Sep 17 00:00:00 2001 From: Marcel Kloubert Date: Mon, 27 Nov 2017 09:23:33 +0100 Subject: [PATCH] bugfixes --- CHANGELOG.md | 3 ++- package.json | 4 ++-- src/values.ts | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e8ebba0..d1f8b04 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) @@ -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) diff --git a/package.json b/package.json index c5bbfbb..e615a8c 100644 --- a/package.json +++ b/package.json @@ -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" @@ -35169,4 +35169,4 @@ "uglify-js": "^2.8.23", "uuid": "^3.0.1" } -} \ No newline at end of file +} diff --git a/src/values.ts b/src/values.ts index c6d577f..f7aad7f 100644 --- a/src/values.ts +++ b/src/values.ts @@ -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()", })); }