Open marktani opened 6 years ago
That's a bit tricky right now. What you could do is run graphql create
with the currently broken --no-install
(oops...), link your local boilerplate-install version in the .install folder, then create a small test script that calls .install\index.js. Because --no-install
was not added correctly, the only alternative is to break the create
command while it's install dependencies.
For example, right now I want to add a new
folder: string
parameter to thedeploy
command, for thereact-fullstack-graphql-basic
boilerplate:but before pushing I'd like to actually test that this does what I want 🙂
I know that I can use
yarn link
usually, but I typically invoke this install flow usinggraphql create
, which doesn't use my local dependency 🤔