atfops

Results 5 comments of atfops

Yes that was surprising.. but still working by adding the provider block in each modules (even it's not really optimize)

Was working with patch last week but now not working anymore. Following error : ```bash 23.06 [commonjs--resolver] Failed to resolve entry for package "antlr4". The package may have incorrect main/module/exports...

Yes i'm actually using 4.13.1-patch-1 and got this error. There is my package.json : ```json ... "dependencies": { ... "antlr4": "^4.13.1-patch-1", ... } ... ```

In fact, my bad was the ```^``` to remove in package files. So it's working with : ```json ... "dependencies": { ... "antlr4": "4.13.1-patch-1", ... } ... ``` Thanks to...