Skip to content

Commit 6ff84a6

Browse files
committed
esbuild bundled, fixed easy reinstall change
1 parent b718569 commit 6ff84a6

File tree

8 files changed

+621
-11
lines changed

8 files changed

+621
-11
lines changed

.vscode/launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"--extensionDevelopmentPath=${workspaceFolder}"
1414
],
1515
"outFiles": [
16-
"${workspaceFolder}/out/**/*.js"
16+
"${workspaceFolder}/out/extension.js"
1717
],
1818
"preLaunchTask": "${defaultBuildTask}"
1919
},

.vscode/tasks.json

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,23 @@
44
"version": "2.0.0",
55
"tasks": [
66
{
7+
8+
"type": "npm",
9+
"script": "esbuild-watch",
10+
//"problemMatcher": "$tsc-watch",
11+
"isBackground": true,
12+
"presentation": {
13+
"reveal": "never",
14+
"group": "watchers"
15+
},
16+
"group": {
17+
"kind": "build",
18+
"isDefault": true
19+
},
20+
"label": "npm: esbuild watch",
21+
"detail": "npm run esbuild-base -- --sourcemap --watch"
22+
}
23+
/*{
724
"type": "npm",
825
"script": "watch",
926
"problemMatcher": "$tsc-watch",
@@ -17,6 +34,6 @@
1734
},
1835
"label": "npm: watch",
1936
"detail": "tsc -watch -p ./"
20-
}
37+
}*/
2138
]
2239
}

.vscodeignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,18 @@
11
.vscode/**
22
.vscode-test/**
33
src/**
4+
src/test
45
.gitignore
56
.yarnrc
67
vsc-extension-quickstart.md
78
**/tsconfig.json
89
**/.eslintrc.json
910
**/*.map
1011
**/*.ts
12+
out/*.js
13+
out/*.map
14+
out/test
15+
!out/extension.js
16+
out/libs
17+
out/tr
18+
node_modules

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,12 @@
55
- Create command that shows clang and clangd version in terminal
66
- 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)
77

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

1315
## [2.1.0] - 2023-9-22
1416
### Removed

0 commit comments

Comments
 (0)