Clément Plantier
Clément Plantier
In your generated [pom.xml](http://search.maven.org/#artifactdetails%7Corg.lucasr.twowayview%7Ctwowayview%7C0.1.3%7Caar) you have a dependency to support-v4 version 19.0.+. Maven doesn't understand dependencies with the plus sign. This prevents using your library from a Maven project: ```...
Currently `console.js` in electron-log makes references to console functions (e.g `console.log`, etc.) during module initialization ([source](https://github.com/megahertz/electron-log/blob/35535062403df2c3ac6e73a5d5d8886adfcab861/src/transports/console.js#L7)). This can lead to problems if the application (or its libraries) then make replacements...
What about integrating Google Play Game Services SDK (to have leaderboards, achivements, etc.) ?
I have a project referencing a native module on the local filesystem. For example: ``` "dependencies": { "hello": "file:../../node-addon-examples/1_hello_world/node-addon-api", } ``` When I run `npm install` in my project, I...
When running Yarn tasks using this gradle plugin, I get no colors in the output. Running the same commands using Yarn directly prints colorized text. e.g: `./gradlew yarn_list` : all...
### Describe the bug Hi, I'm trying to load a worker from the main process with an ESM (`"type": "module"`) project, using the following syntax: ```ts import workerPath from "./native-worker?modulePath";...
### Describe the bug When trying to call [electron-log](https://github.com/megahertz/electron-log) from a Node worker, I get this error: ``` TypeError: Cannot read properties of undefined (reading 'exports') at cjsPreparseModuleExports (node:internal/modules/esm/translators:295:81) at...
When trying to call electron-log from a Node worker, I get this error: ``` TypeError: Cannot read properties of undefined (reading 'exports') at cjsPreparseModuleExports (node:internal/modules/esm/translators:295:81) at createCJSModuleWrap (node:internal/modules/esm/translators:187:35) at ModuleLoader....