Wanted to run this by you @kirkbyo, since it's a bit weird.
backend is deployed to Cloud Functions, but the server can't actually access local packages like @withorbit/api: they're not actually published to NPM. So our strategy has been to bundle the local dependencies into a single .js which then gets deployed. But to make this strategy work, I have to remove the local dependencies from package.json (otherwise, the Firebase servers try to install them along with all the other dependencies, and fail).
I noticed that you re-added these dependencies recently. Was something breaking when they weren't declared? Everything seems to work appropriately with them gone as far as I can tell, but I wanted to run it past you.
Wanted to run this by you @kirkbyo, since it's a bit weird.
backend
is deployed to Cloud Functions, but the server can't actually access local packages like@withorbit/api
: they're not actually published to NPM. So our strategy has been to bundle the local dependencies into a single .js which then gets deployed. But to make this strategy work, I have to remove the local dependencies from package.json (otherwise, the Firebase servers try to install them along with all the other dependencies, and fail).I noticed that you re-added these dependencies recently. Was something breaking when they weren't declared? Everything seems to work appropriately with them gone as far as I can tell, but I wanted to run it past you.