Skip to content
This repository was archived by the owner on Jan 17, 2022. It is now read-only.

Commit cf33d3a

Browse files
committed
Harmonize formatting (removed empty lines and dangling commas).
1 parent 954229d commit cf33d3a

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

Gruntfile.js

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,8 @@ module.exports = function(grunt) {
22

33
grunt.loadNpmTasks('grunt-contrib-connect');
44

5-
65
// Project configuration.
76
grunt.initConfig({
8-
9-
107
connect: {
118
server: {
129
options: {
@@ -15,10 +12,7 @@ module.exports = function(grunt) {
1512
keepalive: true
1613
}
1714
}
18-
}
19-
20-
,
21-
15+
},
2216
pkg: grunt.file.readJSON('package.json'),
2317
uglify: {
2418
options: {
@@ -34,20 +28,20 @@ module.exports = function(grunt) {
3428
lib: {
3529
options: {},
3630
src: ['src/*.js']
37-
},
31+
}
3832
},
3933
watch: {
4034
scripts: {
4135
files: 'src/*.js',
4236
tasks: ['jshint', 'uglify'],
4337
options: {
4438
interrupt: true
45-
},
39+
}
4640
},
4741
gruntfile: {
4842
files: 'Gruntfile.js'
4943
}
50-
},
44+
}
5145
});
5246

5347
// Load all grunt tasks

0 commit comments

Comments
 (0)