Gulp

Gulp is the task manager that is used to automate the task for easy development. Mentor is divided in different parts for which different gulp task is created.

If you have not installed gulp globally then please it using below command.

npm install gulp-cli -g

Now install all the dependencies required for the project go inside folder /src and run below command.

npm install

This will install all the dependencies from package manager.

Not to run the project use below commang this will process all the scss files and js files and will auto start the browser.

gulp serve

After you have finished all the changes use below commange to build your project which will minify your css and js.

gulp build

After completion you can see a folder name /dist on your root directory now you can upload the files inside the folder to your server.

Suggest Edit