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

Commit 0a87ace

Browse files
committed
chore: always produce sourcemaps from esbuild. Set logLevel to info.
1 parent bb8315a commit 0a87ace

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/language-server-ruby/esbuild.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,10 @@ const treeSitterWasmPlugin = {
2121
require('esbuild').build({
2222
entryPoints: ['src/index.ts'],
2323
bundle: true,
24-
sourcemap: process.env.NODE_ENV !== 'production',
24+
sourcemap: true,
2525
minify: true,
2626
outfile: `${outDir}/index.js`,
27+
logLevel: 'info',
2728
external: ['vscode'],
2829
format: 'cjs',
2930
platform: 'node',

0 commit comments

Comments
 (0)