Merge pull request #8614 from cvrebert/grunt
Switch from `make` to `grunt` Rebase of #7786 against soon-to-be 3.0.0-rc.1
Showing
Gruntfile.js
0 → 100644
Makefile
deleted
100644 → 0
This diff is collapsed.
| ... | @@ -5,7 +5,7 @@ | ... | @@ -5,7 +5,7 @@ |
| , "keywords": ["bootstrap", "css"] | , "keywords": ["bootstrap", "css"] | ||
| , "homepage": "http://twbs.github.com/bootstrap/" | , "homepage": "http://twbs.github.com/bootstrap/" | ||
| , "author": "Twitter Inc." | , "author": "Twitter Inc." | ||
| , "scripts": { "test": "make test" } | , "scripts": { "test": "grunt test" } | ||
| , "repository": { | , "repository": { | ||
| "type": "git" | "type": "git" | ||
| , "url": "https://github.com/twbs/bootstrap.git" | , "url": "https://github.com/twbs/bootstrap.git" | ||
| ... | @@ -17,9 +17,14 @@ | ... | @@ -17,9 +17,14 @@ |
| } | } | ||
| ] | ] | ||
| , "devDependencies": { | , "devDependencies": { | ||
| "uglify-js": "1.3.4" | "grunt": "~0.4.1" | ||
| , "jshint": "2.1.2" | , "grunt-contrib-connect": "~0.3.0" | ||
| , "recess": "1.1.7" | , "grunt-contrib-clean": "~0.5.0" | ||
| , "connect": "2.1.3" | , "grunt-contrib-concat": "~0.3.0" | ||
| , "grunt-contrib-jshint": "~0.6.0" | |||
| , "grunt-contrib-uglify": "~0.2.2" | |||
| , "grunt-contrib-qunit": "~0.2.2" | |||
| , "grunt-contrib-watch": "~0.5.1" | |||
| , "grunt-recess": "~0.3.3" | |||
| } | } | ||
| } | } |
Please register or sign in to comment