Skip to content

Commit 1132752

Browse files
committed
Merge branch 'topic/http-refactoring'
2 parents 992b67a + 85c5ff8 commit 1132752

File tree

4 files changed

+341
-153
lines changed

4 files changed

+341
-153
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ purescript-angular $ bower install
1717

1818
purescript-angular $ gulp todomvc
1919

20-
purescript-angular $ gulp watch_todomvc
20+
purescript-angular $ gulp watch.todomvc
2121
```
2222

2323
Then visit: [http://localhost:9501/examples/Todomvc/main.html](http://localhost:9501/examples/Todomvc/main.html).

bower.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,15 @@
1717
"dist"
1818
],
1919
"dependencies": {
20-
"purescript-maybe": "0.2.0"
20+
"purescript-maybe": "0.2.0",
21+
"purescript-either": "0.1.2"
2122
},
2223
"devDependencies": {
2324
"angular": "1.2.22",
2425
"todomvc-common": "0.1.9",
2526
"purescript-strings": "0.2.1",
2627
"purescript-arrays": "0.2.0",
2728
"purescript-control": "0.2.0",
28-
"purescript-foldable-traversable": "0.1.3"
29+
"purescript-foldable-traversable": "0.1.3",
2930
}
3031
}

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ gulp.task('watch', function(cb){
8686
gulp.watch(config.purescript.src, ['make']);
8787
});
8888

89-
gulp.task('watch_todomvc', function(cb){
89+
gulp.task('watch.todomvc', function(cb){
9090
gulp.watch([config.purescript.examples.todomvc].concat(config.purescript.src), ['todomvc']);
9191
server(cb);
9292
});

0 commit comments

Comments
 (0)