@yarnpkg/pnpify
Advanced tools
Comparing version 3.1.3 to 3.1.4
@@ -109,2 +109,4 @@ /// <reference types="node" /> | ||
}): BigIntStats | Stats; | ||
fchmodPromise(fd: number, mask: number): Promise<void>; | ||
fchmodSync(fd: number, mask: number): void; | ||
chmodPromise(p: PortablePath, mask: number): Promise<void>; | ||
@@ -126,4 +128,4 @@ chmodSync(p: PortablePath, mask: number): void; | ||
utimesSync(p: PortablePath, atime: Date | string | number, mtime: Date | string | number): void; | ||
mkdirPromise(p: PortablePath, opts: MkdirOptions): Promise<void>; | ||
mkdirSync(p: PortablePath, opts: MkdirOptions): void; | ||
mkdirPromise(p: PortablePath, opts: MkdirOptions): Promise<string | undefined>; | ||
mkdirSync(p: PortablePath, opts: MkdirOptions): string | undefined; | ||
rmdirPromise(p: PortablePath, opts?: RmdirOptions): Promise<void>; | ||
@@ -163,2 +165,4 @@ rmdirSync(p: PortablePath, opts?: RmdirOptions): void; | ||
truncateSync(p: PortablePath, len?: number): void; | ||
ftruncatePromise(fd: number, len?: number): Promise<void>; | ||
ftruncateSync(fd: number, len?: number): void; | ||
watch(p: PortablePath, cb?: WatchCallback): Watcher; | ||
@@ -165,0 +169,0 @@ watch(p: PortablePath, opts: WatchOptions, cb?: WatchCallback): Watcher; |
@@ -268,2 +268,8 @@ "use strict"; | ||
} | ||
async fchmodPromise(fd, mask) { | ||
return this.baseFs.fchmodPromise(this.resolveDirOrFilePath(fd), mask); | ||
} | ||
fchmodSync(fd, mask) { | ||
return this.baseFs.fchmodSync(this.resolveDirOrFilePath(fd), mask); | ||
} | ||
async chmodPromise(p, mask) { | ||
@@ -431,2 +437,8 @@ return await this.baseFs.chmodPromise(this.resolveDirOrFilePath(p), mask); | ||
} | ||
async ftruncatePromise(fd, len) { | ||
return await this.baseFs.ftruncatePromise(fd, len); | ||
} | ||
ftruncateSync(fd, len) { | ||
return this.baseFs.ftruncateSync(fd, len); | ||
} | ||
watch(p, a, b) { | ||
@@ -433,0 +445,0 @@ const pnpPath = this.resolvePath(p); |
{ | ||
"name": "@yarnpkg/pnpify", | ||
"version": "3.1.3", | ||
"version": "3.1.4", | ||
"license": "BSD-2-Clause", | ||
@@ -10,4 +10,4 @@ "main": "./lib/index.js", | ||
"dependencies": { | ||
"@yarnpkg/core": "^3.2.2", | ||
"@yarnpkg/fslib": "^2.6.2", | ||
"@yarnpkg/core": "^3.2.3", | ||
"@yarnpkg/fslib": "^2.7.0", | ||
"@yarnpkg/nm": "^3.0.3", | ||
@@ -21,3 +21,3 @@ "clipanion": "^3.2.0-rc.4", | ||
"@yarnpkg/monorepo": "^0.0.0", | ||
"@yarnpkg/pnp": "^3.2.1" | ||
"@yarnpkg/pnp": "^3.2.2" | ||
}, | ||
@@ -24,0 +24,0 @@ "scripts": { |
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
43611
999
2
Updated@yarnpkg/core@^3.2.3
Updated@yarnpkg/fslib@^2.7.0