Skip to content
This repository was archived by the owner on Jul 31, 2023. It is now read-only.

Commit 8ba0e01

Browse files
committed
chore: update developing.md to mention esbuild instead of webpack
1 parent 997ab9a commit 8ba0e01

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/developing.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ The overall extension is broken out into several packages within the `packages`
1313
- [`language-server-ruby`](https://github.com/rubyide/vscode-ruby/blob/master/packages/language-server-ruby) - language server implementation
1414
<!-- - [`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) -->
1515

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.
1717

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.
1919

2020
Packages that just use `tsc` are dependencies of other packages.
2121

@@ -25,7 +25,7 @@ Packages that just use `tsc` are dependencies of other packages.
2525
- run `yarn install`
2626
- run `yarn watch`
2727

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.
2929

3030
## Developing
3131

0 commit comments

Comments
 (0)