You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 31, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: docs/developing.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,9 +13,9 @@ The overall extension is broken out into several packages within the `packages`
13
13
-[`language-server-ruby`](https://github.com/rubyide/vscode-ruby/blob/master/packages/language-server-ruby) - language server implementation
14
14
<!-- - [`ruby-debug-ide-protocol`](https://github.com/rubyide/vscode-ruby/blob/master/packages/ruby-debug-ide-protocol) - implementation of the [ruby-debug-ide protocol](https://github.com/ruby-debug/ruby-debug-ide/blob/master/protocol-spec.md) -->
15
15
16
-
Each package utilizes `webpack` or `tsc` to build the `dist` directory, depending up on whether `node_modules` needs to be bundled
16
+
Each package utilizes `esbuild` or `tsc` to build the `dist` directory.
17
17
18
-
Packages that use `webpack` are consumed directly by VS Code. VS Code does not run `npm install` for packages and thus any code must make sure its dependencies are bundled alongside it.
18
+
Packages that use `esbuild` are consumed directly by VS Code. VS Code does not run `npm install` for packages and thus any code must make sure its dependencies are bundled alongside it.
19
19
20
20
Packages that just use `tsc` are dependencies of other packages.
21
21
@@ -25,7 +25,7 @@ Packages that just use `tsc` are dependencies of other packages.
25
25
- run `yarn install`
26
26
- run `yarn watch`
27
27
28
-
`yarn watch` will symlink the `dist` directories from the required packages and start webpack (via `lerna`) in each package. You can look at the `scripts/link-dist.sh` script to see what is happening there.
28
+
`yarn watch` will symlink the `dist` directories from the required packages and start esbuild (via `lerna`) in each package. You can look at the `scripts/link-dist.sh` script to see what is happening there.
0 commit comments