@pnpm/installing.linking.hoist 1002.0.8 → 1100.0.0

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.js +1 -1
  2. package/package.json +12 -12
package/lib/index.js CHANGED
@@ -8,7 +8,7 @@ import { logger } from '@pnpm/logger';
8
8
  import { lexCompare } from '@pnpm/util.lex-comparator';
9
9
  import { isSubdir } from 'is-subdir';
10
10
  import { resolveLinkTarget } from 'resolve-link-target';
11
- import symlinkDir from 'symlink-dir';
11
+ import { symlinkDir } from 'symlink-dir';
12
12
  const hoistLogger = logger('hoist');
13
13
  export async function hoist(opts) {
14
14
  const result = getHoistedDependencies(opts);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnpm/installing.linking.hoist",
3
- "version": "1002.0.8",
3
+ "version": "1100.0.0",
4
4
  "description": "Hoists dependencies in a node_modules created by pnpm",
5
5
  "keywords": [
6
6
  "pnpm",
@@ -31,20 +31,20 @@
31
31
  "is-subdir": "^2.0.0",
32
32
  "ramda": "npm:@pnpm/ramda@0.28.1",
33
33
  "resolve-link-target": "^3.0.0",
34
- "symlink-dir": "^7.0.0",
35
- "@pnpm/bins.linker": "1000.2.6",
36
- "@pnpm/core-loggers": "1001.0.4",
37
- "@pnpm/constants": "1001.3.1",
38
- "@pnpm/types": "1000.9.0",
39
- "@pnpm/config.matcher": "1000.1.0"
34
+ "symlink-dir": "^10.0.1",
35
+ "@pnpm/bins.linker": "1100.0.0",
36
+ "@pnpm/constants": "1100.0.0",
37
+ "@pnpm/config.matcher": "1100.0.0",
38
+ "@pnpm/core-loggers": "1100.0.0",
39
+ "@pnpm/types": "1100.0.0"
40
40
  },
41
41
  "peerDependencies": {
42
42
  "@pnpm/logger": ">=1001.0.0 <1002.0.0"
43
43
  },
44
44
  "devDependencies": {
45
- "@types/ramda": "0.29.12",
46
- "@pnpm/logger": "1001.0.1",
47
- "@pnpm/installing.linking.hoist": "1002.0.8"
45
+ "@types/ramda": "0.31.1",
46
+ "@pnpm/logger": "1100.0.0",
47
+ "@pnpm/installing.linking.hoist": "1100.0.0"
48
48
  },
49
49
  "engines": {
50
50
  "node": ">=22.13"
@@ -54,8 +54,8 @@
54
54
  },
55
55
  "scripts": {
56
56
  "start": "tsgo --watch",
57
- "test": "pnpm run compile",
57
+ "test": "pn compile",
58
58
  "lint": "eslint \"src/**/*.ts\"",
59
- "compile": "tsgo --build && pnpm run lint --fix"
59
+ "compile": "tsgo --build && pn lint --fix"
60
60
  }
61
61
  }