From d744145c1bc32c05b49c41eab306255b9a1f7985 Mon Sep 17 00:00:00 2001 From: Carolyn Van Slyck Date: Tue, 9 Nov 2021 13:57:37 -0600 Subject: [PATCH] Fix version detection of package https://github.com/martinbeentjes/npm-get-version-action has a bug where it uses grep and cat to find the package version. Since our description has the word "version" in it, it was picking up the entire description as the version number. I am moving the description below our package version in the file to accommodate the bug until it can be fixed. Signed-off-by: Carolyn Van Slyck --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index e12f6d4..9f05b8b 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,8 @@ { "name": "porter-vscode", "displayName": "Porter", - "description": "Package your application artifact, client tools, configuration and deployment logic together as a versioned bundle that you can distribute, and then install with a single command", "version": "0.0.3", + "description": "Package your application artifact, client tools, configuration and deployment logic together as a versioned bundle that you can distribute, and then install with a single command", "preview": true, "publisher": "getporter", "icon": "resources/porter.png",