update eslint plugin version

remove builtin-modules external dependency
This commit is contained in:
Johannes Theiner
2025-11-14 14:28:33 +01:00
parent 0eca98adda
commit 123fc4a870
4 changed files with 190 additions and 86 deletions

View File

@@ -1,6 +1,6 @@
import esbuild from "esbuild";
import process from "process";
import builtins from "builtin-modules";
import { builtinModules } from 'node:module';
const banner =
`/*
@@ -31,7 +31,7 @@ const context = await esbuild.context({
"@lezer/common",
"@lezer/highlight",
"@lezer/lr",
...builtins],
...builtinModules],
format: "cjs",
target: "es2018",
logLevel: "info",