Skip to content

Commit

Permalink
esbuild bundled, fixed easy reinstall change
Browse files Browse the repository at this point in the history
  • Loading branch information
boocs committed Oct 23, 2023
1 parent b718569 commit 6ff84a6
Show file tree
Hide file tree
Showing 8 changed files with 621 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"--extensionDevelopmentPath=${workspaceFolder}"
],
"outFiles": [
"${workspaceFolder}/out/**/*.js"
"${workspaceFolder}/out/extension.js"
],
"preLaunchTask": "${defaultBuildTask}"
},
Expand Down
19 changes: 18 additions & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,23 @@
"version": "2.0.0",
"tasks": [
{

"type": "npm",
"script": "esbuild-watch",
//"problemMatcher": "$tsc-watch",
"isBackground": true,
"presentation": {
"reveal": "never",
"group": "watchers"
},
"group": {
"kind": "build",
"isDefault": true
},
"label": "npm: esbuild watch",
"detail": "npm run esbuild-base -- --sourcemap --watch"
}
/*{
"type": "npm",
"script": "watch",
"problemMatcher": "$tsc-watch",
Expand All @@ -17,6 +34,6 @@
},
"label": "npm: watch",
"detail": "tsc -watch -p ./"
}
}*/
]
}
8 changes: 8 additions & 0 deletions .vscodeignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
.vscode/**
.vscode-test/**
src/**
src/test
.gitignore
.yarnrc
vsc-extension-quickstart.md
**/tsconfig.json
**/.eslintrc.json
**/*.map
**/*.ts
out/*.js
out/*.map
out/test
!out/extension.js
out/libs
out/tr
node_modules
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,12 @@
- Create command that shows clang and clangd version in terminal
- Add a way to add skeleton support for UE5 source intellisense (wont work but people will have a compile_flags.txt and a UE5 .clangd file to try to get it to work)

## [2.2.0] - 2023-10-20
## [2.2.1] - 2023-10-21
### Changed
- It will prompt you when running the creation command on whether you want a full or partial install.
- You no longer have to change the creation.overwrite setting manually
### Added
- Extension is now bundled. Smaller size and faster start.

## [2.1.0] - 2023-9-22
### Removed
Expand Down
Loading

0 comments on commit 6ff84a6

Please sign in to comment.