@types/vinyl-fs
Advanced tools
Comparing version 2.4.11 to 2.4.12
@@ -24,6 +24,6 @@ // Type definitions for vinyl-fs 2.4 | ||
/** Prevents stream from emitting an error when file not found. */ | ||
allowEmpty?: boolean; | ||
allowEmpty?: boolean | undefined; | ||
/** Specifies the working directory the folder is relative to */ | ||
cwd?: string; | ||
cwd?: string | undefined; | ||
@@ -35,3 +35,3 @@ /** | ||
*/ | ||
base?: string; | ||
base?: string | undefined; | ||
@@ -43,3 +43,3 @@ /** | ||
*/ | ||
buffer?: boolean; | ||
buffer?: boolean | undefined; | ||
@@ -50,3 +50,3 @@ /** | ||
*/ | ||
dirMode?: number; | ||
dirMode?: number | undefined; | ||
@@ -57,3 +57,3 @@ /** | ||
*/ | ||
dot?: boolean; | ||
dot?: boolean | undefined; | ||
@@ -66,3 +66,3 @@ /** | ||
*/ | ||
followSymlinks?: boolean; | ||
followSymlinks?: boolean | undefined; | ||
@@ -74,3 +74,3 @@ /** | ||
*/ | ||
read?: boolean; | ||
read?: boolean | undefined; | ||
@@ -81,6 +81,6 @@ /** | ||
*/ | ||
relative?: boolean; | ||
relative?: boolean | undefined; | ||
/** Only find files that have been modified since the time specified */ | ||
since?: Date | number; | ||
since?: Date | number | undefined; | ||
@@ -91,3 +91,3 @@ /** | ||
*/ | ||
stripBOM?: boolean; | ||
stripBOM?: boolean | undefined; | ||
@@ -99,3 +99,3 @@ /** | ||
*/ | ||
passthrough?: boolean; | ||
passthrough?: boolean | undefined; | ||
@@ -106,3 +106,3 @@ /** | ||
*/ | ||
sourcemaps?: boolean; | ||
sourcemaps?: boolean | undefined; | ||
@@ -114,3 +114,3 @@ /** | ||
*/ | ||
resolveSymlinks?: boolean; | ||
resolveSymlinks?: boolean | undefined; | ||
/** | ||
@@ -120,3 +120,3 @@ * Causes the BOM to be removed on UTF-8 encoded files. Set to false if you need the BOM for some reason. | ||
*/ | ||
removeBOM?: boolean; | ||
removeBOM?: boolean | undefined; | ||
} | ||
@@ -129,3 +129,3 @@ | ||
*/ | ||
cwd?: string; | ||
cwd?: string | undefined; | ||
@@ -137,9 +137,9 @@ /** | ||
*/ | ||
mode?: number | string; | ||
mode?: number | string | undefined; | ||
/** Specify the mode the directory should be created with. Default is the process mode */ | ||
dirMode?: number | string; | ||
dirMode?: number | string | undefined; | ||
/** Specify if existing files with the same path should be overwritten or not. Default is true, to always overwrite existing files */ | ||
overwrite?: boolean; | ||
overwrite?: boolean | undefined; | ||
@@ -150,3 +150,3 @@ /** | ||
*/ | ||
sourcemaps?: true | string; | ||
sourcemaps?: true | string | undefined; | ||
@@ -157,6 +157,6 @@ /** | ||
*/ | ||
relativeSymlinks?: boolean; | ||
relativeSymlinks?: boolean | undefined; | ||
/* When creating a symlink, whether or not a directory symlink should be created as a junction. */ | ||
useJunctions?: boolean; | ||
useJunctions?: boolean | undefined; | ||
} | ||
@@ -206,6 +206,6 @@ | ||
*/ | ||
cwd?: string; | ||
cwd?: string | undefined; | ||
/** Specify the mode the directory should be created with. Default is the process mode */ | ||
mode?: number | string; | ||
mode?: number | string | undefined; | ||
@@ -216,3 +216,3 @@ /** | ||
*/ | ||
dirMode?: number | ||
dirMode?: number | undefined | ||
}): NodeJS.ReadWriteStream; | ||
@@ -231,3 +231,3 @@ | ||
*/ | ||
cwd?: string; | ||
cwd?: string | undefined; | ||
@@ -238,3 +238,3 @@ /** | ||
*/ | ||
dirMode?: number | ||
dirMode?: number | undefined | ||
}): NodeJS.ReadWriteStream; |
{ | ||
"name": "@types/vinyl-fs", | ||
"version": "2.4.11", | ||
"version": "2.4.12", | ||
"description": "TypeScript definitions for vinyl-fs", | ||
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/vinyl-fs", | ||
"license": "MIT", | ||
@@ -24,6 +25,7 @@ "contributors": [ | ||
"main": "", | ||
"types": "index", | ||
"types": "index.d.ts", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git" | ||
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", | ||
"directory": "types/vinyl-fs" | ||
}, | ||
@@ -36,4 +38,4 @@ "scripts": {}, | ||
}, | ||
"typesPublisherContentHash": "131ad8a746202bc96f694564356516b6f80007c96ec96210c500bf204526b16e", | ||
"typeScriptVersion": "2.0" | ||
"typesPublisherContentHash": "cd6f5abd07e92d900139c88023db12af89d7ca5344e8e7c393294bee72434778", | ||
"typeScriptVersion": "3.6" | ||
} |
@@ -5,13 +5,13 @@ # Installation | ||
# Summary | ||
This package contains type definitions for vinyl-fs ( https://github.com/gulpjs/vinyl-fs ). | ||
This package contains type definitions for vinyl-fs (https://github.com/gulpjs/vinyl-fs). | ||
# Details | ||
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/vinyl-fs | ||
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/vinyl-fs. | ||
Additional Details | ||
* Last updated: Thu, 14 Feb 2019 00:21:08 GMT | ||
* Dependencies: @types/vinyl, @types/glob-stream, @types/node | ||
### Additional Details | ||
* Last updated: Fri, 02 Jul 2021 18:05:05 GMT | ||
* Dependencies: [@types/vinyl](https://npmjs.com/package/@types/vinyl), [@types/glob-stream](https://npmjs.com/package/@types/glob-stream), [@types/node](https://npmjs.com/package/@types/node) | ||
* Global values: none | ||
# Credits | ||
These definitions were written by vvakame <https://github.com/vvakame>, remisery <https://github.com/remisery>, TeamworkGuy2 <https://github.com/TeamworkGuy2>. | ||
These definitions were written by [vvakame](https://github.com/vvakame), [remisery](https://github.com/remisery), and [TeamworkGuy2](https://github.com/TeamworkGuy2). |
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
No website
QualityPackage does not have a website.
Found 1 instance in 1 package
11129
0