Skip to content

Commit 15a87b6

Browse files
authored
Merge pull request #492 from processing/githooks
added pre-commit hook
2 parents f620932 + f73e1ec commit 15a87b6

7 files changed

+1403
-1025
lines changed

Gruntfile.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,12 @@ module.exports = function(grunt) {
5656
hostname: '*'
5757
}
5858
}
59-
}
59+
},
60+
githooks: {
61+
all: {
62+
'pre-commit':'lint' //runs linting test before every git commit
63+
}
64+
}
6065
});
6166

6267

@@ -65,6 +70,7 @@ module.exports = function(grunt) {
6570
grunt.loadNpmTasks('grunt-contrib-connect');
6671
grunt.loadNpmTasks('grunt-open');
6772
grunt.loadNpmTasks('grunt-decomment');
73+
grunt.loadNpmTasks('grunt-githooks');
6874

6975
grunt.registerTask('lint', ['eslint:source']);
7076
grunt.registerTask('default', ['webpack:prod', 'decomment']);

lib/p5.sound.js

+1,319-1,019
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/p5.sound.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/p5.sound.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/p5.sound.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

+70
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
"grunt-contrib-connect": "^1.0.2",
2121
"grunt-decomment": "^0.2.4",
2222
"grunt-eslint": "^20.0.0",
23+
"grunt-githooks": "^0.6.0",
2324
"grunt-mocha": "^1.0.4",
2425
"grunt-open": "^0.2.3",
2526
"grunt-webpack": "^3.1.3",
@@ -40,6 +41,7 @@
4041
"build": "grunt",
4142
"test": "grunt run-tests",
4243
"lint": "grunt lint",
43-
"dev": "grunt dev"
44+
"dev": "grunt dev",
45+
"postinstall": "grunt githooks"
4446
}
4547
}

0 commit comments

Comments
 (0)