File tree Expand file tree Collapse file tree 5 files changed +10
-74
lines changed Expand file tree Collapse file tree 5 files changed +10
-74
lines changed Original file line number Diff line number Diff line change 1
1
language : node_js
2
- sudo : required
3
2
dist : trusty
4
- node_js : 5
3
+ sudo : required
4
+ node_js : 6
5
5
env :
6
6
- PATH=$HOME/purescript:$PATH
7
7
install :
@@ -13,12 +13,9 @@ install:
13
13
- npm install
14
14
- bower install
15
15
script :
16
- - npm run build
16
+ - npm run -s build
17
17
after_success :
18
18
- >-
19
19
test $TRAVIS_TAG &&
20
- psc-publish > .pursuit.json &&
21
- curl -X POST http://pursuit.purescript.org/packages \
22
- -d @.pursuit.json \
23
- -H 'Accept: application/json' \
24
- -H "Authorization: token ${GITHUB_TOKEN}"
20
+ echo $GITHUB_TOKEN | pulp login &&
21
+ echo y | pulp publish --no-push
Original file line number Diff line number Diff line change 19
19
"dependencies" : {
20
20
"purescript-eff" : " ^1.0.0-rc.1" ,
21
21
"purescript-integers" : " ^1.0.0-rc.1" ,
22
- "purescript-math" : " ^1 .0.0-rc.1"
22
+ "purescript-math" : " ^2 .0.0-rc.1"
23
23
}
24
24
}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 2
2
"private" : true ,
3
3
"scripts" : {
4
4
"clean" : " rimraf output && rimraf .pulp-cache" ,
5
- "build" : " jshint src && jscs src && pulp build"
5
+ "build" : " jshint src && jscs src && pulp build --censor-lib --strict "
6
6
},
7
7
"devDependencies" : {
8
8
"jscs" : " ^2.8.0" ,
9
9
"jshint" : " ^2.9.1" ,
10
- "pulp" : " ^8.1.0" ,
10
+ "pulp" : " ^8.2.0" ,
11
+ "purescript-psa" : " ^0.3.8" ,
11
12
"rimraf" : " ^2.5.0"
12
13
}
13
14
}
Original file line number Diff line number Diff line change @@ -46,4 +46,4 @@ randomRange min max = do
46
46
-- | Returns a random boolean value with an equal chance of being `true` or
47
47
-- | `false`.
48
48
randomBool :: forall e . Eff (random :: RANDOM | e ) Boolean
49
- randomBool = (< 0.5 ) <$> random
49
+ randomBool = (_ < 0.5 ) <$> random
You can’t perform that action at this time.
0 commit comments