Skip to content

Commit ecaa203

Browse files
v0.0.2
1 parent c2d6956 commit ecaa203

File tree

4 files changed

+7
-10
lines changed

4 files changed

+7
-10
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to the "prostdev-tools" extension will be documented in this file.
44

5+
## 0.0.2
6+
7+
- Removed the `Running with the DW CLI...` and `DW CLI finished running!` info messages.
8+
59
## 0.0.1
610

711
- Very first release, still experimental!

README.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,3 @@ The use of the [DataWeave 2.0 extension for VS Code](https://marketplace.visuals
3030
## Extension Settings
3131

3232
TBD - will add settings to set up the input payload. Right now the extension will look for the input at `${workingDir}/src/test/resources/${fileName}/Playground/inputs/` (the directory used by the DataWeave extension)
33-
34-
## Release Notes
35-
36-
### 0.0.1
37-
38-
Very first release, still experimental!
39-

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "ProstDev Tools",
44
"publisher": "ProstDev",
55
"description": "Experimental tools and utilities to ease up your MuleSoft/DataWeave programming!",
6-
"version": "0.0.1",
6+
"version": "0.0.2",
77
"repository": {
88
"type": "git",
99
"url": "https://github.com/ProstDev/prostdev-tools"

src/extension.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export function activate(context: vscode.ExtensionContext) {
1616
const disposable = vscode.commands.registerCommand('prostdev-tools.dwcli', () => {
1717
// The code you place here will be executed every time your command is executed
1818
// Display a message box to the user
19-
vscode.window.showInformationMessage('Running with the DW CLI...');
19+
// vscode.window.showInformationMessage('Running with the DW CLI...');
2020

2121
var path = require("path");
2222
var fs = require("fs");
@@ -53,7 +53,7 @@ export function activate(context: vscode.ExtensionContext) {
5353
terminal.show();
5454
terminal.sendText("dw run -f " + filePath + inputCommand);
5555

56-
vscode.window.showInformationMessage('DW CLI finished running!');
56+
// vscode.window.showInformationMessage('DW CLI finished running!');
5757
});
5858

5959
context.subscriptions.push(disposable);

0 commit comments

Comments
 (0)