Skip to content

Commit a32718a

Browse files
committed
Merge branch 'topic/http-refactoring'
2 parents 1132752 + dbd1b02 commit a32718a

File tree

9 files changed

+1081
-569
lines changed

9 files changed

+1081
-569
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
.psci
12
node_modules
23
bower_components
34
js

MODULE.md

Lines changed: 451 additions & 222 deletions
Large diffs are not rendered by default.

bower.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,10 @@
1717
"dist"
1818
],
1919
"dependencies": {
20+
"purescript-either": "0.1.2",
21+
"purescript-foldable-traversable": "0.1.3",
2022
"purescript-maybe": "0.2.0",
21-
"purescript-either": "0.1.2"
23+
"purescript-tuples": "0.2.0"
2224
},
2325
"devDependencies": {
2426
"angular": "1.2.22",

gulpfile.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,15 @@ gulp.task('make', function(){
7272
);
7373
});
7474

75+
gulp.task('psci', function(){
76+
return (
77+
gulp.src(config.purescript.src).
78+
pipe(plumber()).
79+
pipe(purescript.dotPsci()).
80+
on('error', error)
81+
);
82+
});
83+
7584
gulp.task('docgen', function(){
7685
return (
7786
gulp.src(config.purescript.src[1]).

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"gulp": "3.8.7",
66
"gulp-clean": "0.3.1",
77
"gulp-plumber": "0.6.4",
8-
"gulp-purescript": "0.0.9",
8+
"gulp-purescript": "0.0.10",
99
"gulp-util": "3.0.0",
1010
"node-static": "0.7.4"
1111
}

0 commit comments

Comments
 (0)