diff options
-rw-r--r-- | server/src/parser.ts | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/server/src/parser.ts b/server/src/parser.ts index 700a5a5..4d8c731 100644 --- a/server/src/parser.ts +++ b/server/src/parser.ts @@ -594,7 +594,13 @@ function PackageEndLine(state: ParserState) { return state.codeArray.length; } -const wasmBin = fs.readFileSync(path.join(__dirname, "./../node_modules/vscode-oniguruma/release/onig.wasm")).buffer; +// Resolve the path to the vscode-oniguruma package +const onigurumaPkgPath = path.dirname(require.resolve('vscode-oniguruma/package.json')); +console.log(onigurumaPkgPath); +// Construct the path to onig.wasm +const onigWasmPath = path.join(onigurumaPkgPath, 'release', 'onig.wasm'); +// Read the file +const wasmBin = fs.readFileSync(onigWasmPath).buffer; const vscodeOnigurumaLib = oniguruma.loadWASM(wasmBin).then(() => { return { createOnigScanner(patterns: any) { |