Added Gulp

I have created a gulpfile.js with the same tasks of grunt, replaced npm script and finally ad .jshintrc for jshint
This commit is contained in:
Daniel
2018-03-11 14:15:17 +01:00
parent 0282413b69
commit 8069b003f4
3 changed files with 99 additions and 5 deletions

22
.jshintrc Normal file
View File

@ -0,0 +1,22 @@
{
"curly": false,
"eqeqeq": true,
"immed": true,
"esnext": true,
"latedef": "nofunc",
"newcap": true,
"noarg": true,
"sub": true,
"undef": true,
"eqnull": true,
"browser": true,
"expr": true,
"globals": {
"head": false,
"module": false,
"console": false,
"unescape": false,
"define": false,
"exports": false
}
}