cspell-io
Advanced tools
Comparing version 4.0.21 to 4.0.22
@@ -12,3 +12,3 @@ "use strict"; | ||
function writeToFileIterable(filename, data) { | ||
const sourceStream = iterable_to_stream_1.iterableToStream(data); | ||
const sourceStream = stream.Readable.from ? stream.Readable.from(data) : iterable_to_stream_1.iterableToStream(data); | ||
const writeStream = fs.createWriteStream(filename); | ||
@@ -15,0 +15,0 @@ const zip = filename.match(/\.gz$/) ? zlib.createGzip() : new stream.PassThrough(); |
{ | ||
"name": "cspell-io", | ||
"version": "4.0.21", | ||
"version": "4.0.22", | ||
"description": "A library of useful I/O functions used across various cspell tools.", | ||
@@ -39,24 +39,6 @@ "main": "dist/index.js", | ||
}, | ||
"nyc": { | ||
"include": [ | ||
"src/**/*.ts" | ||
], | ||
"exclude": [ | ||
"src/**/*.test.ts" | ||
], | ||
"extension": [ | ||
".ts" | ||
], | ||
"require": [ | ||
"ts-node/register" | ||
], | ||
"reporter": [ | ||
"json", | ||
"html" | ||
] | ||
}, | ||
"engines": { | ||
"node": ">=10.0.0" | ||
}, | ||
"gitHead": "710c11198d72f879a53f6c6f8528c7c356bd68c8" | ||
"gitHead": "68f792d0df311560b42156a0e71e8b249c753b88" | ||
} |
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
11903