@pnpm/lockfile.make-dedicated-lockfile 1100.0.29 → 1100.0.31
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/CHANGELOG.md +26 -0
- package/lib/bin.d.ts +1 -0
- package/lib/bin.js +13 -0
- package/lib/index.d.ts +1 -0
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @pnpm/make-dedicated-lockfile
|
|
2
2
|
|
|
3
|
+
## 1100.0.31
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies:
|
|
8
|
+
- @pnpm/lockfile.fs@1100.1.15
|
|
9
|
+
- @pnpm/lockfile.pruner@1100.0.17
|
|
10
|
+
- @pnpm/releasing.exportable-manifest@1100.2.0
|
|
11
|
+
- @pnpm/types@1101.7.0
|
|
12
|
+
- @pnpm/workspace.project-manifest-reader@1100.0.21
|
|
13
|
+
|
|
14
|
+
## 1100.0.30
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- Republished every package: the tarballs published by the v11.13.1 through v11.16.0 releases were missing most of their compiled files due to a packing bug [#13164](https://github.com/pnpm/pnpm/issues/13164).
|
|
19
|
+
|
|
20
|
+
- Updated dependencies:
|
|
21
|
+
- @pnpm/error@1100.1.0
|
|
22
|
+
- @pnpm/lockfile.fs@1100.1.14
|
|
23
|
+
- @pnpm/lockfile.pruner@1100.0.16
|
|
24
|
+
- @pnpm/releasing.exportable-manifest@1100.1.15
|
|
25
|
+
- @pnpm/types@1101.6.0
|
|
26
|
+
- @pnpm/workspace.project-manifest-reader@1100.0.20
|
|
27
|
+
- @pnpm/workspace.root-finder@1100.0.4
|
|
28
|
+
|
|
3
29
|
## 1100.0.29
|
|
4
30
|
|
|
5
31
|
### Patch Changes
|
package/lib/bin.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/lib/bin.js
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { PnpmError } from '@pnpm/error';
|
|
2
|
+
import { findWorkspaceDir } from '@pnpm/workspace.root-finder';
|
|
3
|
+
import { makeDedicatedLockfile } from './index.js';
|
|
4
|
+
main();
|
|
5
|
+
async function main() {
|
|
6
|
+
const projectDir = process.cwd();
|
|
7
|
+
const lockfileDir = await findWorkspaceDir(projectDir);
|
|
8
|
+
if (!lockfileDir) {
|
|
9
|
+
throw new PnpmError('WORKSPACE_NOT_FOUND', 'Cannot create a dedicated lockfile for a project that is not in a workspace.');
|
|
10
|
+
}
|
|
11
|
+
await makeDedicatedLockfile(lockfileDir, projectDir);
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=bin.js.map
|
package/lib/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function makeDedicatedLockfile(lockfileDir: string, projectDir: string): Promise<void>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnpm/lockfile.make-dedicated-lockfile",
|
|
3
|
-
"version": "1100.0.
|
|
3
|
+
"version": "1100.0.31",
|
|
4
4
|
"description": "Creates a dedicated lockfile for a subset of workspace projects",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pnpm",
|
|
@@ -32,23 +32,23 @@
|
|
|
32
32
|
"lockfile.make-dedicated-lockfile": "./bin/make-dedicated-lockfile.js"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@pnpm/error": "1100.0
|
|
35
|
+
"@pnpm/error": "1100.1.0",
|
|
36
36
|
"@pnpm/exec": "^4.0.0",
|
|
37
|
-
"@pnpm/lockfile.fs": "1100.1.
|
|
38
|
-
"@pnpm/lockfile.pruner": "1100.0.
|
|
37
|
+
"@pnpm/lockfile.fs": "1100.1.15",
|
|
38
|
+
"@pnpm/lockfile.pruner": "1100.0.17",
|
|
39
39
|
"@pnpm/logger": "1100.0.0",
|
|
40
|
-
"@pnpm/releasing.exportable-manifest": "1100.
|
|
41
|
-
"@pnpm/types": "1101.
|
|
42
|
-
"@pnpm/workspace.project-manifest-reader": "1100.0.
|
|
43
|
-
"@pnpm/workspace.root-finder": "1100.0.
|
|
40
|
+
"@pnpm/releasing.exportable-manifest": "1100.2.0",
|
|
41
|
+
"@pnpm/types": "1101.7.0",
|
|
42
|
+
"@pnpm/workspace.project-manifest-reader": "1100.0.21",
|
|
43
|
+
"@pnpm/workspace.root-finder": "1100.0.4",
|
|
44
44
|
"ramda": "npm:@pnpm/ramda@0.28.1",
|
|
45
45
|
"rename-overwrite": "^7.0.1"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@jest/globals": "30.4.1",
|
|
49
|
-
"@pnpm/lockfile.make-dedicated-lockfile": "1100.0.
|
|
50
|
-
"@pnpm/test-fixtures": "1100.0.
|
|
51
|
-
"@types/ramda": "0.
|
|
49
|
+
"@pnpm/lockfile.make-dedicated-lockfile": "1100.0.31",
|
|
50
|
+
"@pnpm/test-fixtures": "1100.0.1",
|
|
51
|
+
"@types/ramda": "0.32.0",
|
|
52
52
|
"execa": "npm:safe-execa@0.3.0"
|
|
53
53
|
},
|
|
54
54
|
"engines": {
|