Josh Wilson

Results 14 comments of Josh Wilson

I can confirm that this is a problem, it can show up when ESBuildMinifyPlugin is run on multiple bundles somehow (chunk splitting, multiple entry points, whatever). The problem isn't really...

Sorry, I meant "PR", not "MR". I will spin up a repository to try to reproduce, but keep in mind it's only a problem when ESBuild generates helper variables with...

Good news, I found a simple workaround! Using ```js new ESBuildMinifyPlugin({ ...otherOptions, format: 'iife' }) ``` wraps ESBuild's helpers in an IIFE to prevent these global variable conflicts. I personally...

@bigdaddystein I had the same idea, and I found LiveSPICE looking for prior art. From what I can tell, you can write a VST plugin using C# with [VST.NET](https://github.com/obiwanjacobi/vst.net), and...

I've been working on this from time to time, but since the ESLint ecosystem is currently so tied to CommonJS, it's been a difficult time getting it to work with...

> I'm open to a package, but worried that it may get out of date. Do you mean out of sync with `eslint-plugin-solid`, or the greater ecosystem? For the former,...

I think this is a good solution for `esbuild-loader`, as evidenced by similar options for Babel and Typescript, but is it even possible for Webpack to resolve a new `import`...

For building web editors, could you add a file exporting the `Linter` class alone to the packages exports public API? Though that class is supposed to be runtime agnostic, it's...

Hi, sorry if that came across harshly, let me explain what I was thinking. My main thought is that I don't think ESLint should go farther than rules like `eslint-comments/no-restricted-disable`....

I will say that most of my thoughts were along the lines of "this shouldn't be necessary" but not "this isn't practical," especially for such a large number of contributors....