Skip to content

Commit 277bc41

Browse files
authored
Merge pull request #23 from purescript-contrib/bump
Update dependencies, add lazy instance, use newtype
2 parents 584dc39 + 7986324 commit 277bc41

File tree

13 files changed

+62
-482
lines changed

13 files changed

+62
-482
lines changed

.gitignore

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
.*
1+
/.*
22
!/.gitignore
3-
/output/
4-
/node_modules/
3+
!/.travis.yml
54
/bower_components/
6-
/tmp/
5+
/node_modules/
6+
/output/

.travis.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
language: node_js
2+
dist: trusty
3+
sudo: required
4+
node_js: 6
5+
install:
6+
- npm install -g bower
7+
- npm install
8+
- bower install --production
9+
script:
10+
- npm run -s build
11+
- bower install
12+
- npm run -s test
13+
after_success:
14+
- >-
15+
test $TRAVIS_TAG &&
16+
echo $GITHUB_TOKEN | pulp login &&
17+
echo y | pulp publish --no-push

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# purescript-string-parsers
22

3-
[![Latest release](http://img.shields.io/bower/v/purescript-string-parsers.svg)](https://github.com/purescript-contrib/purescript-string-parsers/releases)
3+
[![Latest release](http://img.shields.io/github/release/purescript-contrib/purescript-string-parsers.svg)](https://github.com/purescript-contrib/purescript-string-parsers/releases)
4+
[![Build status](https://travis-ci.org/purescript-contrib/purescript-string-parsers.svg?branch=master)](https://travis-ci.org/purescript-contrib/purescript-string-parsers)
5+
[![Dependency status](https://img.shields.io/librariesio/github/purescript-contrib/purescript-string-parsers.svg)](https://libraries.io/github/purescript-contrib/purescript-string-parsers)
46
[![Maintainer: paf31](https://img.shields.io/badge/maintainer-paf31-lightgrey.svg)](http://github.com/paf31)
57

68
A parsing library for parsing strings.
@@ -11,4 +13,6 @@ This library is a simpler, faster alternative to `purescript-parsing`, for when
1113

1214
bower i purescript-string-parsers
1315

14-
- [Module Documentation](docs/)
16+
## Documentation
17+
18+
Module documentation is [published on Pursuit](http://pursuit.purescript.org/packages/purescript-string-parsers).

bower.json

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,34 +4,32 @@
44
"keywords": [
55
"purescript"
66
],
7+
"license": "MIT",
78
"ignore": [
89
"**/.*",
910
"bower_components",
1011
"node_modules",
1112
"output",
1213
"tests",
13-
"js",
14-
"tmp",
1514
"bower.json",
16-
"Gruntfile.js",
1715
"package.json"
1816
],
1917
"repository": {
2018
"type": "git",
2119
"url": "git://github.com/paf31/purescript-string-parsers.git"
2220
},
2321
"dependencies": {
24-
"purescript-control": "^1.0.0",
25-
"purescript-arrays": "^1.0.0",
26-
"purescript-maybe": "^1.0.0",
27-
"purescript-strings": "^1.0.0",
28-
"purescript-foldable-traversable": "^1.0.0",
29-
"purescript-either": "^1.0.0",
30-
"purescript-lists": "^1.0.0",
31-
"purescript-tailrec": "^1.0.0"
22+
"purescript-control": "^2.0.0",
23+
"purescript-arrays": "^3.0.0",
24+
"purescript-maybe": "^2.0.1",
25+
"purescript-strings": "^2.0.2",
26+
"purescript-foldable-traversable": "^2.0.0",
27+
"purescript-either": "^2.0.0",
28+
"purescript-lists": "^3.0.1",
29+
"purescript-tailrec": "^2.0.0"
3230
},
3331
"devDependencies": {
3432
"purescript-math": "^2.0.0",
35-
"purescript-console": "^1.0.0"
33+
"purescript-console": "^2.0.0"
3634
}
3735
}

docs/Text/Parsing/StringParser.md

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

docs/Text/Parsing/StringParser/Combinators.md

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

0 commit comments

Comments
 (0)