Site icon Hip-Hop Website Design and Development

La Cheap WordPress maintenance support plansera (en): Grunt, automating repetitive work

Grunt is a Javascript task automator that allows us to launch a series of tasks at the same time with just a single order. Being based on Javascript, both the syntax and the operation is very simple, working based on plugins

Instalation

npm install -g grunt-cli

 

We will need two main files that we will place in the root of the project in which Grunt will perform its tasks:

package.json

{
“name”: “ExampleProject”,
“version”: “0.1”,
“dependencies”: {

},
“devDependencies”: {

}
}

and Gruntfile.js

Read more


Source: New feed