We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hey there,
I use a monorepo with NPM workspaces:
project +-- node_modules +-- packages +-- shared-lib +-- actor +-- apify.json
The apify push command is run from the actor directory. Apify client uses the actor folder as root path as seen here:
apify push
actor
apify-cli/src/commands/push.js
Line 67 in 6222bd0
This is preventing a proper installation of the shared-lib when container runs npm install because the lib is not bundled.
shared-lib
npm install
Could we have a new option in apify.json to allow a custom root path?
apify.json
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hey there,
I use a monorepo with NPM workspaces:
The
apify push
command is run from theactor
directory.Apify client uses the
actor
folder as root path as seen here:apify-cli/src/commands/push.js
Line 67 in 6222bd0
This is preventing a proper installation of the
shared-lib
when container runsnpm install
because the lib is not bundled.Could we have a new option in
apify.json
to allow a custom root path?The text was updated successfully, but these errors were encountered: