Skip to content

Commit

Permalink
Merge branch 'release/1.3.1' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
Serhioromano committed Mar 27, 2022
2 parents 1a305a1 + 79266b6 commit 512b2d1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-gitflow",
"displayName": "Git Flow",
"description": "Git-Flow support for VS Code",
"version": "1.3.0",
"version": "1.3.1",
"engines": {
"vscode": "^1.64.0"
},
Expand Down Expand Up @@ -725,15 +725,15 @@
]
}
},
"main": "./out/extension.js",
"main": "./out/main.js",
"scripts": {
"_vscode:prepublish": "npm run esbuild-base -- --minify",
"vscode:prepublish": "npm run esbuild-base -- --minify",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/main.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run esbuild-base -- --sourcemap",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
"watch": "tsc -watch -p ./",
"publish": "vsce package && gh release create $(node -pe \"require('./package.json')['version']\") --generate-notes \"./vscode-gitflow-$(node -pe \"require('./package.json')['version']\").vsix\" && vsce publish",
"vscode:prepublish": "npm run compile",
"_vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
Expand Down
2 changes: 1 addition & 1 deletion src/ViewBranches.ts
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ export class TreeViewBranches implements vscode.TreeDataProvider<Flow> {
? " --showcommands "
: " ";
let cmd = `"${this.util.path}" flow ${feature} ${what}${command}${option} ${name} ${base}`;
console.log(cmd);
//console.log(cmd);

this.util.exec(cmd, progress, (s) => {
this._onDidChangeTreeData.fire();
Expand Down

0 comments on commit 512b2d1

Please sign in to comment.