undefined…

less than 1 minute read

[April 4th, 2020 5:24 PM] joelturcotte.g: I’m trying to build google cloud function, I just have two errors remaining. Importing other local module & changing the main entry point (or finding why index don’t work). I hope some of you had similar issue & can point me in the right direction.

Responses:

I haven’t tried deploying to google cloud, but if it’s executing yarn install, perhaps you can look at where the cwd is at

Files were probably moved around and it’s not in that relative spot anymore

And if that doesn’t work, you could probably publishing to a local npm registry like verdaccio

<https://verdaccio.org https://verdaccio.org>

I have a private NPM registry & I use lerna to manage package version & publish them. Does Nx have a similar NPM package deployment feature?

Hi, try yarn link

it should help you sort out the dependency …

Updated: