You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To perform a minimal install of the gulp-webapp generator without the optional features like Sass, Bootstrap, or Modernizr using the command line (without the interactive UI), you can pass --no- flags for each of the options you don't want to include.
Here’s how you can run it without those additional features:
bash
Copy code
yo gulp-webapp --skip-cache --skip-welcome-message --babel --no-sass --no-bootstrap --no-modernizr
Explanation:
--skip-cache: Skips Yeoman's cache for the generator.
--skip-welcome-message: Skips the welcome message from Yeoman.
--babel: Ensures that Babel is included for JavaScript ES6+ transpiling.
--no-sass: Disables Sass, so only plain CSS is used.
--no-bootstrap: Skips Bootstrap inclusion.
--no-modernizr: Skips Modernizr inclusion.
I've installed the yeoman gulp webapp generator
When I exec
it brings up the 'ui'
I want to install none of those. I can of course un-select them in the 'ui'.
How can I pass that decision on the command line? So I can do a minimal gulp-webapp scaffold install?
The text was updated successfully, but these errors were encountered: