n8n-io / n8n-nodes-starter

Example starter module for custom n8n nodes.
MIT License
190 stars 128 forks source link

glup version incompatible with graceful-fs #45

Open soheilade opened 7 months ago

soheilade commented 7 months ago

hi,

i am trying to install the sample Nasa starter project from here : https://docs.n8n.io/integrations/creating-nodes/build/declarative-style-node/ at step 6 while trying npm run build in my node dir, i get this error:

fs.js:42
} = primordials;
    ^

ReferenceError: primordials is not defined

i tried to force the dependency by adding the following to my package.json:

"pnpm":{
      "overrides": {
        "graceful-fs": "^4.2.11"
      }
    }

but apparently it can not be applied when there glup server is forced to 3.9.1 in the very same package.json of this repository: gulp": "^3.9.1",

any ideas how to solve this?

Thanks.