Skip to content

Commit 52ededd

Browse files
authored
Merge pull request #4 from purescript/ps-0.11
Update for PureScript 0.11
2 parents 2a4fc1f + cd58371 commit 52ededd

File tree

7 files changed

+11
-57
lines changed

7 files changed

+11
-57
lines changed

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
/.*
22
!/.gitignore
3-
!/.jscsrc
4-
!/.jshintrc
53
!/.travis.yml
64
/bower_components/
75
/node_modules/

.jscsrc

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

.jshintrc

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

.travis.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
language: node_js
22
dist: trusty
33
sudo: required
4-
node_js: 6
4+
node_js: stable
55
env:
66
- PATH=$HOME/purescript:$PATH
77
install:
@@ -11,11 +11,9 @@ install:
1111
- chmod a+x $HOME/purescript
1212
- npm install -g bower
1313
- npm install
14+
- bower install
1415
script:
15-
- bower install --production
1616
- npm run -s build
17-
- bower install
18-
- npm -s test
1917
after_success:
2018
- >-
2119
test $TRAVIS_TAG &&

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# purescript-typelevel-prelude
22

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

56
Types and kinds for basic type-level programming, for PureScript >= v0.10.5.
67

bower.json

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,8 @@
1616
"package.json"
1717
],
1818
"dependencies": {
19-
"purescript-proxy": "^1.0.0",
20-
"purescript-symbols": "^2.0.0",
21-
"purescript-type-equality": "^1.0.0"
22-
},
23-
"devDependencies": {
24-
"purescript-psci-support": "^2.0.0"
19+
"purescript-proxy": "^2.0.0",
20+
"purescript-symbols": "^3.0.0",
21+
"purescript-type-equality": "^2.0.0"
2522
}
2623
}

package.json

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,11 @@
22
"private": true,
33
"scripts": {
44
"clean": "rimraf output && rimraf .pulp-cache",
5-
"build": "jshint src && jscs src && psa \"src/**/*.purs\" \"bower_components/purescript-*/src/**/*.purs\" --censor-lib --strict",
6-
"test": "psc \"src/**/*.purs\" \"bower_components/purescript-*/src/**/*.purs\" \"test/**/*.purs\" && psc-bundle \"output/**/*.js\" --module Test.Main --main Test.Main | node"
5+
"build": "pulp build -- --censor-lib --strict"
76
},
87
"devDependencies": {
9-
"jscs": "^2.8.0",
10-
"jshint": "^2.9.1",
11-
"pulp": "^8.2.0",
12-
"purescript-psa": "^0.3.8",
13-
"rimraf": "^2.5.0"
8+
"pulp": "^10.0.4",
9+
"purescript-psa": "^0.5.0-rc.1",
10+
"rimraf": "^2.6.1"
1411
}
1512
}

0 commit comments

Comments
 (0)