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
Is't possibile to add folder parameter? Can be usefull with specific monorepo structure.
folder
Example:
"bundle": { "command": "npm install", "folder": "packages/repo-1", }
Thank by advance.
The text was updated successfully, but these errors were encountered:
What do you want this parameter to do?
Sorry, something went wrong.
Have sweat configuration when we need to target internal packages.json, to avoid to directly use ``cd packages/repo-1 && npm install` for example.
packages.json
"bundle": { "command": "cd packages/repo-1 && npm install" }
For that example wouldn't you define the command inside of packages/repo-1? Then your root bundle config would just be.
"bundle": { "dependencies": ["./packages/repo-1:bundle"] }
Then inside of repo-1
"bundle": { "command": "npm i" }
I think your problem is solved by cross package dependencies. https://github.com/google/wireit#cross-package-dependencies
No branches or pull requests
Is't possibile to add
folder
parameter? Can be usefull with specific monorepo structure.Example:
Thank by advance.
The text was updated successfully, but these errors were encountered: