@pnpm/lockfile.detect-dep-types 1100.0.14 → 1100.0.15

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 CHANGED
@@ -1,5 +1,14 @@
1
1
  # @pnpm/lockfile.detect-dep-types
2
2
 
3
+ ## 1100.0.15
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies:
8
+ - @pnpm/deps.path@1100.0.10
9
+ - @pnpm/lockfile.types@1100.0.15
10
+ - @pnpm/types@1101.5.0
11
+
3
12
  ## 1100.0.14
4
13
 
5
14
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnpm/lockfile.detect-dep-types",
3
- "version": "1100.0.14",
3
+ "version": "1100.0.15",
4
4
  "description": "Detect the types of dependencies",
5
5
  "keywords": [
6
6
  "pnpm",
@@ -29,12 +29,12 @@
29
29
  "!*.map"
30
30
  ],
31
31
  "dependencies": {
32
- "@pnpm/deps.path": "1100.0.9",
33
- "@pnpm/lockfile.types": "1100.0.14",
34
- "@pnpm/types": "1101.4.0"
32
+ "@pnpm/deps.path": "1100.0.10",
33
+ "@pnpm/lockfile.types": "1100.0.15",
34
+ "@pnpm/types": "1101.5.0"
35
35
  },
36
36
  "devDependencies": {
37
- "@pnpm/lockfile.detect-dep-types": "1100.0.14",
37
+ "@pnpm/lockfile.detect-dep-types": "1100.0.15",
38
38
  "tempy": "3.0.0"
39
39
  },
40
40
  "engines": {
package/lib/index.d.ts DELETED
@@ -1,9 +0,0 @@
1
- import type { LockfileObject } from '@pnpm/lockfile.types';
2
- export declare const DepType: {
3
- readonly DevOnly: 0;
4
- readonly DevAndProd: 1;
5
- readonly ProdOnly: 2;
6
- };
7
- export type DepType = (typeof DepType)[keyof typeof DepType];
8
- export type DepTypes = Record<string, DepType>;
9
- export declare function detectDepTypes(lockfile: LockfileObject): DepTypes;