Comparing version 1.4.0 to 1.5.0
# Changelog | ||
All notable changes to this project will be documented in this file. | ||
<a name="v1.5.0"></a> | ||
## [v1.5.0](https://github.com/rubensworks/rdf-parse.js/compare/v1.4.0...v1.5.0) - 2020-08-31 | ||
### Changed | ||
* [Mark parsed stream as readable](https://github.com/rubensworks/rdf-parse.js/commit/7cb0dc71f95a6d17353a0c493a75774df8685e29) | ||
* [Expose parser typings](https://github.com/rubensworks/rdf-parse.js/commit/d0124e764e0b6c85bbb023f2622cea14fdd748b8) | ||
<a name="v1.4.0"></a> | ||
@@ -5,0 +12,0 @@ ## [v1.4.0](https://github.com/rubensworks/rdf-parse.js/compare/v1.3.1...v1.4.0) - 2020-08-24 |
@@ -0,3 +1,4 @@ | ||
import { RdfParser } from './lib/RdfParser'; | ||
export * from "./lib/RdfParser"; | ||
declare const _default: any; | ||
declare const _default: RdfParser<import("rdf-js").Quad>; | ||
export default _default; |
@@ -5,2 +5,3 @@ /// <reference types="node" /> | ||
import * as RDF from "rdf-js"; | ||
import { Readable } from "stream"; | ||
/** | ||
@@ -32,3 +33,3 @@ * An RdfParser can parse any RDF serialization, based on a given content type. | ||
*/ | ||
parse(stream: NodeJS.ReadableStream, options: ParseOptions): RDF.Stream; | ||
parse(stream: NodeJS.ReadableStream, options: ParseOptions): RDF.Stream & Readable; | ||
/** | ||
@@ -35,0 +36,0 @@ * Get the content type based on the extension of the given path, |
{ | ||
"name": "rdf-parse", | ||
"version": "1.4.0", | ||
"version": "1.5.0", | ||
"description": "Parses RDF from any serialization", | ||
@@ -5,0 +5,0 @@ "lsd:module": "https://linkedsoftwaredependencies.org/bundles/npm/rdf-parse", |
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
35111
405