@ionic/utils-stream
Advanced tools
Comparing version 1.0.1 to 2.0.0
@@ -6,2 +6,19 @@ # Change Log | ||
# [2.0.0](https://github.com/ionic-team/ionic-cli/compare/@ionic/utils-stream@1.0.1...@ionic/utils-stream@2.0.0) (2019-06-10) | ||
### Code Refactoring | ||
* remove combineStreams ([93f4ff2](https://github.com/ionic-team/ionic-cli/commit/93f4ff2)) | ||
### BREAKING CHANGES | ||
* `combineStreams` has been removed. Use | ||
`stream-combiner2` directly. | ||
## [1.0.1](https://github.com/ionic-team/ionic-cli/compare/@ionic/utils-stream@1.0.0...@ionic/utils-stream@1.0.1) (2019-06-05) | ||
@@ -8,0 +25,0 @@ |
/// <reference types="node" /> | ||
import { Readable, ReadableOptions, Writable, WritableOptions } from 'stream'; | ||
import * as combineStreams from 'stream-combiner2'; | ||
export declare class NullStream extends Writable { | ||
@@ -40,2 +39,1 @@ _write(chunk: any, encoding: string, callback: () => void): void; | ||
export declare function growBufferForAppendedData(buf: Buffer, actualsize: number, appendsize: number): Buffer; | ||
export { combineStreams }; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
const stream_1 = require("stream"); | ||
const combineStreams = require("stream-combiner2"); | ||
exports.combineStreams = combineStreams; | ||
const DEFAULT_CHUNK_SIZE = 4; | ||
@@ -7,0 +5,0 @@ const DEFAULT_ALLOC_SIZE = 32; |
{ | ||
"name": "@ionic/utils-stream", | ||
"version": "1.0.1", | ||
"version": "2.0.0", | ||
"description": "Stream utils for NodeJS", | ||
@@ -40,3 +40,2 @@ "main": "dist/index.js", | ||
"debug": "^4.0.0", | ||
"stream-combiner2": "^1.1.1", | ||
"tslib": "^1.9.0" | ||
@@ -52,2 +51,3 @@ }, | ||
"rimraf": "^2.6.2", | ||
"stream-combiner2": "^1.1.1", | ||
"ts-jest": "^23.10.1", | ||
@@ -57,3 +57,3 @@ "tslint": "^5.9.1", | ||
}, | ||
"gitHead": "0ad126ee98567fbbebba9061a845d6d29512494f" | ||
"gitHead": "4f21dca23b5aecd05bab1bb22fcf614ac9650166" | ||
} |
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
8712
2
11
145
- Removedstream-combiner2@^1.1.1
- Removedcore-util-is@1.0.3(transitive)
- Removedduplexer2@0.1.4(transitive)
- Removedinherits@2.0.4(transitive)
- Removedisarray@1.0.0(transitive)
- Removedprocess-nextick-args@2.0.1(transitive)
- Removedreadable-stream@2.3.8(transitive)
- Removedsafe-buffer@5.1.2(transitive)
- Removedstream-combiner2@1.1.1(transitive)
- Removedstring_decoder@1.1.1(transitive)
- Removedutil-deprecate@1.0.2(transitive)