Skip to content

Commit 9a10b94

Browse files
committed
Update to newer grunt plugin
1 parent fd8d36a commit 9a10b94

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

Gruntfile.js

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

33
"use strict";
44

5-
grunt.initConfig({
6-
5+
grunt.initConfig({
6+
77
libFiles: [
88
"src/**/*.purs",
99
"bower_components/purescript-*/src/**/*.purs",
1010
],
11-
11+
1212
clean: ["output"],
13-
13+
1414
pscMake: ["<%=libFiles%>"],
1515
dotPsci: ["<%=libFiles%>"],
16-
docgen: {
16+
pscDocs: {
1717
readme: {
1818
src: "src/**/*.purs",
1919
dest: "README.md"
@@ -36,7 +36,7 @@ module.exports = function(grunt) {
3636
grunt.loadNpmTasks('grunt-jsvalidate');
3737
grunt.loadNpmTasks("grunt-contrib-clean");
3838
grunt.loadNpmTasks("grunt-purescript");
39-
40-
grunt.registerTask("make", ["pscMake", "dotPsci", "docgen", "jsvalidate"]);
39+
40+
grunt.registerTask("make", ["pscMake", "dotPsci", "pscDocs", "jsvalidate"]);
4141
grunt.registerTask("default", ["make"]);
4242
};

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"private": true,
33
"dependencies": {
4-
"grunt": "~0.4.4",
5-
"grunt-purescript": "~0.5.1",
6-
"grunt-contrib-clean": "~0.5.0",
7-
"grunt-jsvalidate": "~0.2.2"
4+
"grunt": "^0.4.5",
5+
"grunt-purescript": "^0.6.0",
6+
"grunt-contrib-clean": "^0.5.0",
7+
"grunt-jsvalidate": "^0.2.2"
88
}
99
}

0 commit comments

Comments
 (0)