@pnpm/lockfile.fs 1100.0.2 → 1100.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/gitBranchLockfile.js +1 -1
- package/package.json +9 -9
package/lib/gitBranchLockfile.js
CHANGED
|
@@ -8,7 +8,7 @@ export async function getGitBranchLockfileNames(lockfileDir) {
|
|
|
8
8
|
}
|
|
9
9
|
export async function cleanGitBranchLockfiles(lockfileDir) {
|
|
10
10
|
const gitBranchLockfiles = await getGitBranchLockfileNames(lockfileDir);
|
|
11
|
-
await Promise.all(gitBranchLockfiles.map(async file => {
|
|
11
|
+
await Promise.all(gitBranchLockfiles.map(async (file) => {
|
|
12
12
|
const filepath = path.join(lockfileDir, file);
|
|
13
13
|
await fs.unlink(filepath);
|
|
14
14
|
}));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnpm/lockfile.fs",
|
|
3
|
-
"version": "1100.0.
|
|
3
|
+
"version": "1100.0.4",
|
|
4
4
|
"description": "Read/write pnpm-lock.yaml files",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pnpm",
|
|
@@ -35,14 +35,14 @@
|
|
|
35
35
|
"strip-bom": "^5.0.0",
|
|
36
36
|
"write-file-atomic": "^7.0.0",
|
|
37
37
|
"@pnpm/constants": "1100.0.0",
|
|
38
|
-
"@pnpm/deps.path": "1100.0.
|
|
38
|
+
"@pnpm/deps.path": "1100.0.2",
|
|
39
39
|
"@pnpm/error": "1100.0.0",
|
|
40
|
-
"@pnpm/lockfile.merger": "1100.0.
|
|
41
|
-
"@pnpm/lockfile.types": "1100.0.
|
|
42
|
-
"@pnpm/
|
|
43
|
-
"@pnpm/network.git-utils": "1100.0.0",
|
|
40
|
+
"@pnpm/lockfile.merger": "1100.0.3",
|
|
41
|
+
"@pnpm/lockfile.types": "1100.0.3",
|
|
42
|
+
"@pnpm/network.git-utils": "1100.0.1",
|
|
44
43
|
"@pnpm/object.key-sorting": "1100.0.0",
|
|
45
|
-
"@pnpm/types": "1101.0.0"
|
|
44
|
+
"@pnpm/types": "1101.0.0",
|
|
45
|
+
"@pnpm/lockfile.utils": "1100.0.4"
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|
|
48
48
|
"@pnpm/logger": ">=1001.0.0 <1002.0.0"
|
|
@@ -57,8 +57,8 @@
|
|
|
57
57
|
"tempy": "3.0.0",
|
|
58
58
|
"write-yaml-file": "^6.0.0",
|
|
59
59
|
"yaml-tag": "1.1.0",
|
|
60
|
-
"@pnpm/
|
|
61
|
-
"@pnpm/
|
|
60
|
+
"@pnpm/logger": "1100.0.0",
|
|
61
|
+
"@pnpm/lockfile.fs": "1100.0.4"
|
|
62
62
|
},
|
|
63
63
|
"engines": {
|
|
64
64
|
"node": ">=22.13"
|