@pnpm/assert-project 2.3.14 → 2.3.16

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.
Files changed (2) hide show
  1. package/lib/index.d.ts +1 -1
  2. package/package.json +10 -10
package/lib/index.d.ts CHANGED
@@ -2,7 +2,7 @@ import { Lockfile, ProjectSnapshot } from '@pnpm/lockfile-types';
2
2
  import { Modules } from '@pnpm/modules-yaml';
3
3
  import isExecutable from './isExecutable';
4
4
  export { isExecutable, Modules };
5
- export declare type RawLockfile = Lockfile & Partial<ProjectSnapshot>;
5
+ export type RawLockfile = Lockfile & Partial<ProjectSnapshot>;
6
6
  export interface Project {
7
7
  requireModule: (moduleName: string) => any;
8
8
  dir: () => string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pnpm/assert-project",
3
3
  "description": "Utils for testing projects that use pnpm",
4
- "version": "2.3.14",
4
+ "version": "2.3.16",
5
5
  "author": {
6
6
  "name": "Zoltan Kochan",
7
7
  "email": "z@kochan.io",
@@ -16,10 +16,10 @@
16
16
  "lib/"
17
17
  ],
18
18
  "devDependencies": {
19
- "@pnpm/assert-project": "2.3.14",
20
19
  "@types/is-windows": "^1.0.0",
21
20
  "@types/isexe": "2.0.1",
22
- "@types/node": "^14.18.29"
21
+ "@types/node": "^14.18.33",
22
+ "@pnpm/assert-project": "2.3.16"
23
23
  },
24
24
  "directories": {
25
25
  "test": "test"
@@ -32,17 +32,17 @@
32
32
  },
33
33
  "repository": "https://github.com/pnpm/pnpm/blob/master/privatePackages/assert-project",
34
34
  "dependencies": {
35
- "@pnpm/assert-store": "1.0.51",
36
- "@pnpm/constants": "6.1.0",
37
- "@pnpm/lockfile-types": "4.3.5",
38
- "@pnpm/modules-yaml": "11.0.2",
39
- "@pnpm/registry-mock": "3.1.0",
40
- "@pnpm/types": "8.9.0",
35
+ "@pnpm/registry-mock": "3.2.0",
41
36
  "is-windows": "^1.0.2",
42
37
  "isexe": "2.0.0",
43
38
  "path-exists": "^4.0.0",
44
39
  "read-yaml-file": "^2.1.0",
45
- "write-pkg": "4.0.0"
40
+ "write-pkg": "4.0.0",
41
+ "@pnpm/assert-store": "1.0.53",
42
+ "@pnpm/constants": "6.1.0",
43
+ "@pnpm/lockfile-types": "4.3.6",
44
+ "@pnpm/modules-yaml": "11.1.0",
45
+ "@pnpm/types": "8.10.0"
46
46
  },
47
47
  "scripts": {
48
48
  "lint": "tslint -c ../../tslint.json --project .",