@yarnpkg/pnpify
Advanced tools
Comparing version 4.0.0-rc.10 to 4.0.0-rc.11
@@ -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>; | ||
@@ -111,0 +113,0 @@ chmodSync(p: PortablePath, mask: number): void; |
@@ -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) { | ||
@@ -270,0 +276,0 @@ return await this.baseFs.chmodPromise(this.resolveDirOrFilePath(p), mask); |
{ | ||
"name": "@yarnpkg/pnpify", | ||
"version": "4.0.0-rc.10", | ||
"version": "4.0.0-rc.11", | ||
"license": "BSD-2-Clause", | ||
@@ -10,5 +10,5 @@ "main": "./lib/index.js", | ||
"dependencies": { | ||
"@yarnpkg/core": "^4.0.0-rc.10", | ||
"@yarnpkg/fslib": "^3.0.0-rc.10", | ||
"@yarnpkg/nm": "^4.0.0-rc.10", | ||
"@yarnpkg/core": "^4.0.0-rc.11", | ||
"@yarnpkg/fslib": "^3.0.0-rc.11", | ||
"@yarnpkg/nm": "^4.0.0-rc.11", | ||
"clipanion": "^3.2.0-rc.10", | ||
@@ -19,3 +19,3 @@ "tslib": "^1.13.0" | ||
"@yarnpkg/monorepo": "^0.0.0", | ||
"@yarnpkg/pnp": "^4.0.0-rc.10" | ||
"@yarnpkg/pnp": "^4.0.0-rc.11" | ||
}, | ||
@@ -22,0 +22,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
43550
998
Updated@yarnpkg/core@^4.0.0-rc.11
Updated@yarnpkg/fslib@^3.0.0-rc.11
Updated@yarnpkg/nm@^4.0.0-rc.11