Skip to content

Commit cae98aa

Browse files
authored
Merge pull request #30 from JordanMartinez/upTo14
Update to v0.14.0-rc2
2 parents dc56ed7 + e9604a8 commit cae98aa

File tree

3 files changed

+4
-11
lines changed

3 files changed

+4
-11
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ node_js: stable
55
env:
66
- PATH=$HOME/purescript:$PATH
77
install:
8-
- TAG=$(basename $(curl --location --silent --output /dev/null -w %{url_effective} https://github.com/purescript/purescript/releases/latest))
8+
# - TAG=$(basename $(curl --location --silent --output /dev/null -w %{url_effective} https://github.com/purescript/purescript/releases/latest))
9+
- TAG=v0.14.0-rc2
910
- curl --location --output $HOME/purescript.tar.gz https://github.com/purescript/purescript/releases/download/$TAG/linux64.tar.gz
1011
- tar -xvf $HOME/purescript.tar.gz -C $HOME/
1112
- chmod a+x $HOME/purescript

bower.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"package.json"
1717
],
1818
"dependencies": {
19-
"purescript-effect": "^2.0.0",
20-
"purescript-prelude": "^4.0.0"
19+
"purescript-effect": "master",
20+
"purescript-prelude": "master"
2121
}
2222
}

src/Effect/Console.js

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,53 +3,45 @@
33
exports.log = function (s) {
44
return function () {
55
console.log(s);
6-
return {};
76
};
87
};
98

109
exports.warn = function (s) {
1110
return function () {
1211
console.warn(s);
13-
return {};
1412
};
1513
};
1614

1715
exports.error = function (s) {
1816
return function () {
1917
console.error(s);
20-
return {};
2118
};
2219
};
2320

2421
exports.info = function (s) {
2522
return function () {
2623
console.info(s);
27-
return {};
2824
};
2925
};
3026

3127
exports.time = function (s) {
3228
return function () {
3329
console.time(s);
34-
return {};
3530
};
3631
};
3732

3833
exports.timeLog = function (s) {
3934
return function () {
4035
console.timeLog(s);
41-
return {};
4236
};
4337
};
4438

4539
exports.timeEnd = function (s) {
4640
return function () {
4741
console.timeEnd(s);
48-
return {};
4942
};
5043
};
5144

5245
exports.clear = function () {
5346
console.clear();
54-
return {};
5547
};

0 commit comments

Comments
 (0)