1.

How Do You Setup/configure Grunt?

Answer»

Once INSTALLED, you need to add 2 files to setup Grunt.

1. package.json: This file is used by NPM to store metadata for projects published as npm modules. So basically, there will be list of all Grunt plugins, along with grunt which your project is using.

2. Gruntfile: This file is NAMED Gruntfile.js and is used to CONFIGURE or define tasks and load Grunt plugins.

Once installed, you need to add 2 files to setup Grunt.

1. package.json: This file is used by npm to store metadata for projects published as npm modules. So basically, there will be list of all Grunt plugins, along with grunt which your project is using.

2. Gruntfile: This file is named Gruntfile.js and is used to configure or define tasks and load Grunt plugins.



Discussion

No Comment Found