Skip to content

Commit 7ed53c6

Browse files
committed
Update build
1 parent 99a9e28 commit 7ed53c6

File tree

6 files changed

+12
-59
lines changed

6 files changed

+12
-59
lines changed

.travis.yml

Lines changed: 3 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,7 +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 gulp -g
12-
- npm install && bower install
12+
- npm install
1313
script:
14-
- gulp
14+
- npm run build

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# purescript-const
22

3+
[![Latest release](http://img.shields.io/bower/v/purescript-const.svg)](https://github.com/purescript/purescript-const/releases)
34
[![Build Status](https://travis-ci.org/purescript/purescript-const.svg?branch=master)](https://travis-ci.org/purescript/purescript-const)
5+
[![Dependency Status](https://www.versioneye.com/user/projects/55848c9e363861001b0001a2/badge.svg?style=flat)](https://www.versioneye.com/user/projects/55848c9e363861001b0001a2)
46

57
Constant data type.
68

@@ -12,4 +14,4 @@ bower install purescript-const
1214

1315
## Module documentation
1416

15-
- [Data.Const](docs/Data.Const.md)
17+
- [Data.Const](docs/Data/Const.md)

bower.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
"output",
2525
"test",
2626
"bower.json",
27-
"gulpfile.js",
2827
"package.json"
2928
],
3029
"dependencies": {
File renamed without changes.

gulpfile.js

Lines changed: 0 additions & 50 deletions
This file was deleted.

package.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
{
22
"private": true,
3+
"scripts": {
4+
"postinstall": "pulp dep install",
5+
"build": "pulp build && rimraf docs && pulp docs"
6+
},
37
"devDependencies": {
4-
"gulp": "^3.8.11",
5-
"gulp-plumber": "^1.0.0",
6-
"gulp-purescript": "^0.5.0-rc.1",
7-
"rimraf": "^2.3.3"
8+
"pulp": "^4.0.1",
9+
"rimraf": "^2.4.1"
810
}
911
}

0 commit comments

Comments
 (0)