Skip to content

Commit

Permalink
v0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandramartinez authored Dec 12, 2024
1 parent c2d6956 commit ecaa203
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 10 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

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

## 0.0.2

- Removed the `Running with the DW CLI...` and `DW CLI finished running!` info messages.

## 0.0.1

- Very first release, still experimental!
7 changes: 0 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,3 @@ The use of the [DataWeave 2.0 extension for VS Code](https://marketplace.visuals
## Extension Settings

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)

## Release Notes

### 0.0.1

Very first release, still experimental!

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "ProstDev Tools",
"publisher": "ProstDev",
"description": "Experimental tools and utilities to ease up your MuleSoft/DataWeave programming!",
"version": "0.0.1",
"version": "0.0.2",
"repository": {
"type": "git",
"url": "https://github.com/ProstDev/prostdev-tools"
Expand Down
4 changes: 2 additions & 2 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export function activate(context: vscode.ExtensionContext) {
const disposable = vscode.commands.registerCommand('prostdev-tools.dwcli', () => {
// The code you place here will be executed every time your command is executed
// Display a message box to the user
vscode.window.showInformationMessage('Running with the DW CLI...');
// vscode.window.showInformationMessage('Running with the DW CLI...');

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

vscode.window.showInformationMessage('DW CLI finished running!');
// vscode.window.showInformationMessage('DW CLI finished running!');
});

context.subscriptions.push(disposable);
Expand Down

0 comments on commit ecaa203

Please sign in to comment.