...

/

Running Prebuilt Tasks with Grunt

Running Prebuilt Tasks with Grunt

Run tasks with Grunt using plugins in this lesson!

Common tasks such as concatenation, minification, and linting are built-in and are available to use as plugins. Note that the officially maintained plugins start with grunt-contrib on the website. Do explore this!

Install the plugin

The next step is to install the plugin via the command: npm install grunt-contrib-plugin-name --save-dev.

Remember minifying? We will try running a minification task with Grunt in this lesson. To follow along, run the command npm install grunt-contrib-uglify --save-dev in the ...