...

/

Running Custom Tasks With Grunt

Running Custom Tasks With Grunt

Run custom tasks with Grunt in this lesson!

You need a package.json and Gruntfile.js to run tasks with Grunt.

The package.json

This file has a list of all the required dependencies, including Grunt.

The Gruntfile

The Gruntfile is where you’ll write some actual code to run tasks. It can:

  • Configure tasks.
  • Load plugins. Plugins are used to run ‘prebuilt’ Grunt tasks. Check out our
...