@pnpm/lockfile.make-dedicated-lockfile 1100.0.25 → 1100.0.26
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 +8 -0
- package/package.json +4 -4
- package/lib/bin.d.ts +0 -1
- package/lib/bin.js +0 -13
- package/lib/index.d.ts +0 -1
package/CHANGELOG.md
CHANGED
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.26",
|
|
4
4
|
"description": "Creates a dedicated lockfile for a subset of workspace projects",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pnpm",
|
|
@@ -37,16 +37,16 @@
|
|
|
37
37
|
"@pnpm/lockfile.fs": "1100.1.11",
|
|
38
38
|
"@pnpm/lockfile.pruner": "1100.0.14",
|
|
39
39
|
"@pnpm/logger": "1100.0.0",
|
|
40
|
-
"@pnpm/releasing.exportable-manifest": "1100.1.
|
|
40
|
+
"@pnpm/releasing.exportable-manifest": "1100.1.11",
|
|
41
41
|
"@pnpm/types": "1101.4.0",
|
|
42
|
-
"@pnpm/workspace.project-manifest-reader": "1100.0.
|
|
42
|
+
"@pnpm/workspace.project-manifest-reader": "1100.0.16",
|
|
43
43
|
"@pnpm/workspace.root-finder": "1100.0.3",
|
|
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.
|
|
49
|
+
"@pnpm/lockfile.make-dedicated-lockfile": "1100.0.26",
|
|
50
50
|
"@pnpm/test-fixtures": "1100.0.0",
|
|
51
51
|
"@types/ramda": "0.31.1",
|
|
52
52
|
"execa": "npm:safe-execa@0.3.0"
|
package/lib/bin.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
package/lib/bin.js
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
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
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare function makeDedicatedLockfile(lockfileDir: string, projectDir: string): Promise<void>;
|