Skip to content

Commit 4ff5ff0

Browse files
committed
Fixes for Travis and Pursuit
1 parent 57c8301 commit 4ff5ff0

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

.travis.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
language: node_js
2+
sudo: false
23
node_js:
34
- 0.10
45
env:
@@ -8,8 +9,6 @@ install:
89
- wget -O $HOME/purescript.tar.gz https://github.com/purescript/purescript/releases/download/$TAG/linux64.tar.gz
910
- tar -xvf $HOME/purescript.tar.gz -C $HOME/
1011
- chmod a+x $HOME/purescript
11-
- npm install bower grunt-cli -g
1212
- npm install
13-
- bower install
1413
script:
15-
- grunt test
14+
- npm run build

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
],
2020
"repository": {
2121
"type": "git",
22-
"url": "git@github.com:purescript-contrib/purescript-parsing.git"
22+
"url": "git://github.com/purescript-contrib/purescript-parsing.git"
2323
},
2424
"dependencies": {
2525
"purescript-transformers": "^0.6.0",

package.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"private": true,
3+
"scripts": {
4+
"postinstall": "pulp dep install",
5+
"build": "pulp build && pulp test && rimraf docs && pulp docs"
6+
},
7+
"devDependencies": {
8+
"pulp": "^4.0.1",
9+
"rimraf": "^2.4.1"
10+
}
11+
}

0 commit comments

Comments
 (0)