@stryker-mutator/util
Advanced tools
Comparing version 2.4.0 to 2.5.0
@@ -6,2 +6,13 @@ # Change Log | ||
# [2.5.0](https://github.com/stryker-mutator/stryker/compare/v2.4.0...v2.5.0) (2020-01-12) | ||
### Features | ||
* **.gitignore:** add Stryker patterns to .gitignore file during initialization ([#1848](https://github.com/stryker-mutator/stryker/issues/1848)) ([854aee0](https://github.com/stryker-mutator/stryker/commit/854aee0)) | ||
# [2.4.0](https://github.com/stryker-mutator/stryker/compare/v2.3.0...v2.4.0) (2019-11-24) | ||
@@ -8,0 +19,0 @@ |
{ | ||
"name": "@stryker-mutator/util", | ||
"version": "2.4.0", | ||
"version": "2.5.0", | ||
"description": "Contains utilities for Stryker, the mutation testing framework for JavaScript and friends", | ||
@@ -28,3 +28,3 @@ "main": "src/index.js", | ||
"homepage": "https://github.com/stryker-mutator/stryker/tree/master/packages/util#readme", | ||
"gitHead": "b36b2234798390e3674576bf3142718b576ad55c" | ||
"gitHead": "4324efe1cc352694494f6bf75ca95c753bdd564a" | ||
} |
/// <reference types="node" /> | ||
import * as fs from 'fs'; | ||
declare const _default: { | ||
appendFile: typeof fs.appendFile.__promisify__; | ||
createReadStream: typeof fs.createReadStream; | ||
@@ -5,0 +6,0 @@ createWriteStream: typeof fs.createWriteStream; |
@@ -10,2 +10,3 @@ "use strict"; | ||
exports.default = { | ||
appendFile: util_1.promisify(fs.appendFile), | ||
createReadStream: fs.createReadStream, | ||
@@ -12,0 +13,0 @@ createWriteStream: fs.createWriteStream, |
@@ -9,2 +9,3 @@ import * as fs from 'fs'; | ||
export default { | ||
appendFile: promisify(fs.appendFile), | ||
createReadStream: fs.createReadStream, | ||
@@ -11,0 +12,0 @@ createWriteStream: fs.createWriteStream, |
@@ -8,9 +8,10 @@ "use strict"; | ||
describe('fsAsPromised', () => { | ||
describePromisifiedFunction('appendFile'); | ||
describePromisifiedFunction('exists'); | ||
describePromisifiedFunction('lstat'); | ||
describePromisifiedFunction('readdir'); | ||
describePromisifiedFunction('readFile'); | ||
describePromisifiedFunction('stat'); | ||
describePromisifiedFunction('symlink'); | ||
describePromisifiedFunction('readFile'); | ||
describePromisifiedFunction('writeFile'); | ||
describePromisifiedFunction('stat'); | ||
describePromisifiedFunction('readdir'); | ||
describeProxyFunction('existsSync'); | ||
@@ -17,0 +18,0 @@ describeProxyFunction('readdirSync'); |
@@ -9,9 +9,10 @@ import * as fs from 'fs'; | ||
describe('fsAsPromised', () => { | ||
describePromisifiedFunction('appendFile'); | ||
describePromisifiedFunction('exists'); | ||
describePromisifiedFunction('lstat'); | ||
describePromisifiedFunction('readdir'); | ||
describePromisifiedFunction('readFile'); | ||
describePromisifiedFunction('stat'); | ||
describePromisifiedFunction('symlink'); | ||
describePromisifiedFunction('readFile'); | ||
describePromisifiedFunction('writeFile'); | ||
describePromisifiedFunction('stat'); | ||
describePromisifiedFunction('readdir'); | ||
@@ -18,0 +19,0 @@ describeProxyFunction('existsSync'); |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
179291
547