Skip to content

Commit 19bf30e

Browse files
committed
Remove test-related stuff (moved to core-tests)
1 parent ff03117 commit 19bf30e

File tree

4 files changed

+10
-132
lines changed

4 files changed

+10
-132
lines changed

Gruntfile.js

Lines changed: 6 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -6,41 +6,19 @@ module.exports = function(grunt) {
66

77
libFiles: [
88
"src/**/*.purs",
9-
"bower_components/purescript-*/src/**/*.purs"
9+
"bower_components/purescript-*/src/**/*.purs",
1010
],
1111

12-
clean: {
13-
dedupe: ["bower_components/purescript-tuples"],
14-
tests: ["tmp"],
15-
lib: ["js", "externs"]
16-
},
12+
clean: ["output"],
1713

1814
pscMake: ["<%=libFiles%>"],
19-
dotPsci: ["<%=libFiles%>"],
20-
21-
psc: {
22-
tests: {
23-
options: {
24-
module: ["Main"],
25-
main: true
26-
},
27-
src: ["tests/Tests.purs", "<%=libFiles%>"],
28-
dest: "tmp/tests.js"
29-
}
30-
},
31-
32-
execute: {
33-
tests: {
34-
src: "tmp/tests.js"
35-
}
36-
}
15+
dotPsci: ["<%=libFiles%>"]
16+
3717
});
3818

3919
grunt.loadNpmTasks("grunt-contrib-clean");
4020
grunt.loadNpmTasks("grunt-purescript");
41-
grunt.loadNpmTasks("grunt-execute");
4221

43-
grunt.registerTask("test", ["clean:dedupe", "clean:tests", "psc:tests", "execute:tests"]);
44-
grunt.registerTask("make", ["clean:dedupe", "pscMake", "dotPsci"]);
45-
grunt.registerTask("default", ["test", "make"]);
22+
grunt.registerTask("make", ["pscMake", "dotPsci"]);
23+
grunt.registerTask("default", ["make"]);
4624
};

bower.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,5 @@
2020
"dependencies": {
2121
"purescript-arrays": "*",
2222
"purescript-monoid": "*"
23-
},
24-
"devDependencies": {
25-
"purescript-quickcheck": "*",
26-
"purescript-math": "*"
2723
}
2824
}

package.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
{
2-
"name": "purescript-",
3-
"version": "0.0.0",
4-
"devDependencies": {
2+
"name": "purescript-tuples",
3+
"private": true,
4+
"dependencies": {
55
"grunt": "~0.4.4",
66
"grunt-purescript": "~0.5.0",
7-
"grunt-contrib-clean": "~0.5.0",
8-
"grunt-execute": "~0.1.5"
7+
"grunt-contrib-clean": "~0.5.0"
98
}
109
}

tests/Tests.purs

Lines changed: 0 additions & 95 deletions
This file was deleted.

0 commit comments

Comments
 (0)