Skip to content

Commit 353e7b1

Browse files
committed
Update build
1 parent 5e1d34f commit 353e7b1

File tree

7 files changed

+14
-99
lines changed

7 files changed

+14
-99
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,3 @@
66
/bower_components/
77
/node_modules/
88
/output/
9-
/tmp/

.jscsrc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
"beforeOpeningRoundBrace": true,
66
"beforeOpeningCurlyBrace": true
77
},
8+
"disallowSpacesInsideObjectBrackets": null,
9+
"requireSpacesInsideObjectBrackets": "all",
810
"validateQuoteMarks": "\"",
911
"requireCurlyBraces": null
1012
}

.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: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# purescript-prelude
22

3+
[![Latest release](http://img.shields.io/bower/v/purescript-prelude.svg)](https://github.com/purescript/purescript-prelude/releases)
34
[![Build Status](https://travis-ci.org/purescript/purescript-prelude.svg?branch=master)](https://travis-ci.org/purescript/purescript-prelude)
45

56
The PureScript prelude. For use with compiler version >= 0.7.

gulpfile.js

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

package.json

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
{
22
"private": true,
3+
"scripts": {
4+
"postinstall": "pulp dep install",
5+
"build": "jshint src && jscs src && pulp build && rimraf docs && pulp docs"
6+
},
37
"devDependencies": {
4-
"gulp": "^3.8.11",
5-
"gulp-jscs": "^1.6.0",
6-
"gulp-jshint": "^1.10.0",
7-
"gulp-plumber": "^1.0.0",
8-
"gulp-purescript": "^0.5.0-rc.1",
9-
"gulp-run": "~1.6.7"
8+
"jscs": "^1.13.1",
9+
"jshint": "^2.8.0",
10+
"pulp": "^4.0.2",
11+
"rimraf": "^2.4.1"
1012
}
1113
}

test/Main.purs

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

0 commit comments

Comments
 (0)