-
Hello I want to automate app creation by passing arguments to npx @modern-js/create@latest so that I dont need to manually feed language and packageManager options... Also once this is done , I need do same for pnpm run new and enabling features such as bff, microfrontend etc... is there any way to achieve this without user inputs and passing some sort of config ? Isee this is from debug lof... but i dont know if similar config can be passed through cli Please select the programming language: TS Expectation
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
@raolak you can use --config params: |
Beta Was this translation helpful? Give feedback.
@raolak you can use --config params:
npx @modern-js/create@latest --config '{"language":"ts","packageManager":"pnpm"}'
new command also support --config params:
pnpm run new --config '{"actionType":"function","function":"tailwindcss"}'