Skip to content

Update dependencies, add lazy instance, use newtype #23

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Oct 28, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.*
/.*
!/.gitignore
/output/
/node_modules/
!/.travis.yml
/bower_components/
/tmp/
/node_modules/
/output/
17 changes: 17 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
language: node_js
dist: trusty
sudo: required
node_js: 6
install:
- npm install -g bower
- npm install
- bower install --production
script:
- npm run -s build
- bower install
- npm run -s test
after_success:
- >-
test $TRAVIS_TAG &&
echo $GITHUB_TOKEN | pulp login &&
echo y | pulp publish --no-push
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# purescript-string-parsers

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

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

bower i purescript-string-parsers

- [Module Documentation](docs/)
## Documentation

Module documentation is [published on Pursuit](http://pursuit.purescript.org/packages/purescript-string-parsers).
22 changes: 10 additions & 12 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,34 +4,32 @@
"keywords": [
"purescript"
],
"license": "MIT",
"ignore": [
"**/.*",
"bower_components",
"node_modules",
"output",
"tests",
"js",
"tmp",
"bower.json",
"Gruntfile.js",
"package.json"
],
"repository": {
"type": "git",
"url": "git://github.com/paf31/purescript-string-parsers.git"
},
"dependencies": {
"purescript-control": "^1.0.0",
"purescript-arrays": "^1.0.0",
"purescript-maybe": "^1.0.0",
"purescript-strings": "^1.0.0",
"purescript-foldable-traversable": "^1.0.0",
"purescript-either": "^1.0.0",
"purescript-lists": "^1.0.0",
"purescript-tailrec": "^1.0.0"
"purescript-control": "^2.0.0",
"purescript-arrays": "^3.0.0",
"purescript-maybe": "^2.0.1",
"purescript-strings": "^2.0.2",
"purescript-foldable-traversable": "^2.0.0",
"purescript-either": "^2.0.0",
"purescript-lists": "^3.0.1",
"purescript-tailrec": "^2.0.0"
},
"devDependencies": {
"purescript-math": "^2.0.0",
"purescript-console": "^1.0.0"
"purescript-console": "^2.0.0"
}
}
102 changes: 0 additions & 102 deletions docs/Text/Parsing/StringParser.md

This file was deleted.

195 changes: 0 additions & 195 deletions docs/Text/Parsing/StringParser/Combinators.md

This file was deleted.

Loading