Skip to content

Commit

Permalink
updated instructions, monaco script
Browse files Browse the repository at this point in the history
  • Loading branch information
lazToum committed Dec 2, 2024
1 parent 6b2f1f4 commit c83a9af
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ coverage/
out/
public/*
!public/overview.webp
!public/from_vsix.webp
dist/
**/*db
**/waldiez_out/
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Changelog

## [Unreleased]

## v0.1.1

- Added monaco editor assets to the build

## v0.1.0

- Initial release
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ Install the extension by running `code --install-extension waldiez-vscode-x.y.z.
- Go to the Extensions view.
- Click Views and More Actions (or the ... icon) and select Install from VSIX....

<img src="public/from_vsix.webp" alt="Install from VSIX" style="max-width: 480px">

After uninstalling the extension, to cleanup everything you can remove the extension files (waldiez.* folder) from the extensions directory. The extensions directory is located at:

- Windows: %USERPROFILE%\.vscode\extensions
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "waldiez-vscode",
"displayName": "Waldiez",
"description": "A Waldiez vscode extension",
"version": "0.1.0",
"version": "0.1.1",
"engines": {
"vscode": "^1.95.0"
},
Expand Down
Binary file added public/from_vsix.webp
Binary file not shown.
2 changes: 1 addition & 1 deletion scripts/monaco.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ function removeUnneededFiles(dir: string): void {
if (stat.isFile()) {
fs.rmSync(entryPath, { force: true });
}
if (entry === 'language') {
if (entry === 'language' && stat.isDirectory()) {
fs.rmSync(path.join(rootDir, 'language'), {
recursive: true,
force: true
Expand Down

0 comments on commit c83a9af

Please sign in to comment.