Skip to content

Latest commit

 

History

History
40 lines (24 loc) · 1.2 KB

gulpCommand.md

File metadata and controls

40 lines (24 loc) · 1.2 KB

Gulp Command

gulp - Build Monster UI

Synopsis

gulp            [--pro=<name>]
gulp build-dev  [--pro=<name>]
gulp build-prod [--pro=<name>]

Description

Start running tasks to build the project for a development or production environment, the result of which is located in the dist folder, at the root level of the project.

Commands

  • gulp

    Compile SCSS to CSS, launch Web server (browsersync) and serve project at http://localhost:3000/, include a CSS watcher that make changes immediate in the browser (livereload), UI reloads automatically on file save.

  • gulp build-dev

    Only compile SCSS to CSS.

  • gulp build-prod

    Compile SCSS to CSS, merge all templates in a single templates.js file, run require, minify main.js and templates.js and minify CSS files.

Options

  • --pro=<name>

    Some applications might have a pro version. If that is the case and you want to build it with the 'pro' assets, you need to set the pro option and specify the name of the application.