Skip to content

Commit f9fa496

Browse files
committed
Merge pull request siddii#172 from polomarcus/progressBar
Progress bar - gh-pages grunt task
2 parents 0e8626c + 61b66df commit f9fa496

File tree

3 files changed

+15
-12
lines changed

3 files changed

+15
-12
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ build/
66
.DS_Store
77
/node_modules/
88
*.log
9+
.grunt

Gruntfile.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ module.exports = function (grunt) {
88
grunt.loadNpmTasks('grunt-contrib-uglify');
99
grunt.loadNpmTasks('grunt-karma');
1010
grunt.loadNpmTasks('grunt-contrib-connect');
11+
grunt.loadNpmTasks('grunt-gh-pages');
1112

1213
var userConfig = {
1314
dist_dir: 'dist',

package.json

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "angular-timer",
44
"version": "1.3.1",
55
"homepage": "https://github.com/siddii/angular-timer",
6-
"main":"dist/angular-timer.js",
6+
"main": "dist/angular-timer.js",
77
"licenses": {
88
"type": "MIT",
99
"url": "https://github.com/siddii/angular-timer/blob/master/LICENSE.txt"
@@ -15,30 +15,31 @@
1515
},
1616
"dependencies": {},
1717
"devDependencies": {
18+
"browserstack-runner": "~0.0.11",
1819
"grunt": "~0.4.1",
1920
"grunt-contrib-clean": "~0.5.0",
20-
"grunt-contrib-connect": "~0.5.0",
2121
"grunt-contrib-concat": "~0.3.0",
22+
"grunt-contrib-connect": "~0.5.0",
2223
"grunt-contrib-copy": "~0.4.0",
2324
"grunt-contrib-jshint": "~0.6.0",
24-
"grunt-contrib-uglify": "~0.2.2",
2525
"grunt-contrib-qunit": "~0.2.2",
26+
"grunt-contrib-uglify": "~0.2.2",
2627
"grunt-contrib-watch": "~0.5.1",
28+
"grunt-gh-pages": "^0.10.0",
2729
"grunt-html-validation": "git://github.com/praveenvijayan/grunt-html-validation.git",
2830
"grunt-jekyll": "~0.3.8",
31+
"grunt-karma": "~0.6.2",
2932
"grunt-recess": "~0.3.3",
30-
"browserstack-runner": "~0.0.11",
31-
"karma-script-launcher": "~0.1.0",
33+
"karma": "~0.10.8",
3234
"karma-chrome-launcher": "~0.1.1",
33-
"karma-html2js-preprocessor": "~0.1.0",
35+
"karma-coffee-preprocessor": "~0.1.1",
3436
"karma-firefox-launcher": "~0.1.2",
37+
"karma-html2js-preprocessor": "~0.1.0",
3538
"karma-jasmine": "~0.1.4",
36-
"requirejs": "~2.1.9",
37-
"karma-requirejs": "~0.2.0",
38-
"karma-coffee-preprocessor": "~0.1.1",
39+
"karma-ng-scenario": "~0.1.0",
3940
"karma-phantomjs-launcher": "~0.1.1",
40-
"karma": "~0.10.8",
41-
"grunt-karma": "~0.6.2",
42-
"karma-ng-scenario": "~0.1.0"
41+
"karma-requirejs": "~0.2.0",
42+
"karma-script-launcher": "~0.1.0",
43+
"requirejs": "~2.1.9"
4344
}
4445
}

0 commit comments

Comments
 (0)