arloliu / copy-node-modules

Fast deploy Node.js modules from local source folder to distination folder
26 stars 14 forks source link

Does not work with monorepo #26

Open redneckz opened 4 years ago

redneckz commented 4 years ago

It seems that only local node_modules are copied. I need to copy some subset of node_modules (even hoisted to the root of monorepo) before deploying AWS lambda to the cloud.

FR073N commented 3 years ago

Same problem for me

alexandr-kozlov-clearscale commented 2 years ago

When I have a reference to other local module in package.json this module doesn't seems to be copied:

  "dependencies": {
    "api": "file:../api",
    ...