Skip to content

Commit 0e32ad4

Browse files
committed
Update build
1 parent 3330253 commit 0e32ad4

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
language: node_js
2+
sudo: false
23
node_js:
34
- 5
45
install:
5-
- npm install bower -g
6+
- npm install -g bower
67
- npm install
78
script:
89
- npm test
910
after_success:
1011
- >-
1112
test $TRAVIS_TAG &&
12-
./node_modules/.bin/psc-publish > .pursuit.json &&
13+
node_modules/.bin/psc-publish > .pursuit.json &&
1314
curl -X POST http://pursuit.purescript.org/packages \
1415
-d @.pursuit.json \
1516
-H 'Accept: application/json' \

package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,13 @@
22
"private": true,
33
"scripts": {
44
"postinstall": "pulp dep install",
5+
"clean": "rimraf output && rimraf .pulp-cache",
6+
"build": "pulp build",
57
"test": "pulp test"
68
},
79
"devDependencies": {
8-
"pulp": "^6.0.0",
9-
"purescript": "^0.7.6"
10+
"pulp": "^7.0.0",
11+
"purescript": "^0.7.6",
12+
"rimraf": "^2.4.4"
1013
}
1114
}

0 commit comments

Comments
 (0)