Comparing version 0.4.0 to 0.4.1
# Changelog | ||
> **Tags:** | ||
> - [New Feature] | ||
> - [Bug Fix] | ||
> - [Breaking Change] | ||
> - [Documentation] | ||
> - [Internal] | ||
> - [Polish] | ||
> - [Experimental] | ||
> | ||
> * [New Feature] | ||
> * [Bug Fix] | ||
> * [Breaking Change] | ||
> * [Documentation] | ||
> * [Internal] | ||
> * [Polish] | ||
> * [Experimental] | ||
**Note**: Gaps between patch versions are faulty/broken releases. | ||
**Note**: A feature tagged as Experimental is in a high state of flux, you're at risk of it changing without notice. | ||
**Note**: Gaps between patch versions are faulty/broken releases. **Note**: A feature tagged as Experimental is in a | ||
high state of flux, you're at risk of it changing without notice. | ||
# 0.4.1 | ||
* **New Feature** | ||
* add `eof` parser, closes #8 (@gcanti) | ||
# 0.4.0 | ||
- **Breaking Change** | ||
- upgrade to latest `fp-ts` (0.6.0) (@gcanti) | ||
* **Breaking Change** | ||
* upgrade to latest `fp-ts` (0.6.0) (@gcanti) | ||
# 0.3.0 | ||
- **Breaking Change** | ||
- upgrade to latest `fp-ts` (0.5.1) (@gcanti) | ||
* **Breaking Change** | ||
* upgrade to latest `fp-ts` (0.5.1) (@gcanti) | ||
# 0.2.1 | ||
- **Internal** | ||
- upgrade to latest `fp-ts` (0.4.3) (@gcanti) | ||
* **Internal** | ||
* upgrade to latest `fp-ts` (0.4.3) (@gcanti) | ||
# 0.2.0 | ||
- **Breaking Change** | ||
- upgrade to latest `fp-ts` (@gcanti) | ||
* **Breaking Change** | ||
* upgrade to latest `fp-ts` (@gcanti) | ||
# 0.1.0 | ||
- **Breaking Change** | ||
- upgrade to latest `fp-ts` (`parser-ts` APIs are not changed though) (@gcanti) | ||
- drop `lib-jsnext` folder | ||
- **Polish** | ||
- use fp-ts's `applySecond` (@gcanti) | ||
* **Breaking Change** | ||
* upgrade to latest `fp-ts` (`parser-ts` APIs are not changed though) (@gcanti) | ||
* drop `lib-jsnext` folder | ||
* **Polish** | ||
* use fp-ts's `applySecond` (@gcanti) | ||
# 0.0.2 | ||
- **Bug Fix** | ||
- fix `sepBy1`, https://github.com/gcanti/parser-ts/pull/1 (@sledorze) | ||
* **Bug Fix** | ||
* fix `sepBy1`, https://github.com/gcanti/parser-ts/pull/1 (@sledorze) | ||
@@ -48,0 +54,0 @@ # 0.0.1 |
@@ -103,2 +103,6 @@ import { Monoid } from 'fp-ts/lib/Monoid'; | ||
export declare const maybe: (parser: Parser<string>) => Parser<string>; | ||
/** | ||
* Matches the end of the input | ||
*/ | ||
export declare const eof: Parser<undefined>; | ||
export declare const fold: (ps: Parser<string>[]) => Parser<string>; | ||
@@ -105,0 +109,0 @@ /** |
@@ -153,2 +153,6 @@ "use strict"; | ||
exports.maybe = function (parser) { return parser.alt(exports.empty()); }; | ||
/** | ||
* Matches the end of the input | ||
*/ | ||
exports.eof = new Parser(function (s) { return (s === '' ? exports.createParseSuccess(undefined, '') : exports.createParseFailure(s, 'end of file')); }); | ||
exports.fold = function (ps) { return Monoid_1.fold(exports.parser)(ps); }; | ||
@@ -155,0 +159,0 @@ /** |
{ | ||
"name": "parser-ts", | ||
"version": "0.4.0", | ||
"version": "0.4.1", | ||
"description": "String parser combinators for TypeScript", | ||
@@ -35,7 +35,7 @@ "files": ["lib"], | ||
"mocha": "3.2.0", | ||
"prettier": "1.5.2", | ||
"prettier": "1.9.2", | ||
"ts-node": "3.2.0", | ||
"tslint": "4.4.2", | ||
"tslint-config-standard": "4.0.0", | ||
"typescript": "2.6.0-rc", | ||
"typescript": "2.6.2", | ||
"typings-checker": "1.1.2" | ||
@@ -42,0 +42,0 @@ }, |
@@ -1,1 +0,2 @@ | ||
A porting of [purescript-eulalie](https://github.com/bodil/purescript-eulalie) to TypeScript featuring [fp-ts](https://github.com/gcanti/fp-ts) | ||
A porting of [purescript-eulalie](https://github.com/bodil/purescript-eulalie) to TypeScript featuring | ||
[fp-ts](https://github.com/gcanti/fp-ts) |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
43215
586
3