Archived
1
0
Fork 0

build-tools: switch grunt for gulp.

This commit is contained in:
Henrik Hautakoski 2018-06-25 14:52:45 +02:00
parent e41c7f776a
commit f40b498ffb
No known key found for this signature in database
GPG key ID: 839F3A7EAFAEAFAA
5 changed files with 3482 additions and 102 deletions

View file

@ -2,20 +2,19 @@
"name": "httpcb",
"version": "0.1.0",
"description": "HTTP Callback Tool",
"main": "Gruntfile.js",
"dependencies": {
"grunt-cli": "^1.2.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-less": "^1.3.0",
"grunt-contrib-uglify": "^2.0.0",
"less-plugin-clean-css": "^1.5.1",
"jquery": "~3.0.0"
},
"devDependencies": {
"grunt": "^1.0.1",
"grunt-contrib-watch": "^1.0.0"
"jquery": "~3.0.0",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.1",
"gulp-csso": "^3.0.1",
"gulp-less": "^3.5.0",
"gulp-rename": "^1.3.0",
"gulp-uglify": "^3.0.0"
},
"scripts": {
"build": "gulp all",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Henrik Hautakoski <henrik.hautakoski@gmail.com>",