symlink-dir 5.2.0 → 6.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.
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2016-2023 Zoltan Kochan <z@kochan.io>
3
+ Copyright (c) 2016-2024 Zoltan Kochan <z@kochan.io>
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/dist/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  declare function symlinkDir(target: string, path: string, opts?: {
2
2
  overwrite?: boolean;
3
3
  }): Promise<{
4
- reused: Boolean;
4
+ reused: boolean;
5
5
  warn?: string;
6
6
  }>;
7
7
  export = symlinkDir;
@@ -9,7 +9,7 @@ declare namespace symlinkDir {
9
9
  function sync(target: string, path: string, opts?: {
10
10
  overwrite?: boolean;
11
11
  }): {
12
- reused: Boolean;
12
+ reused: boolean;
13
13
  warn?: string;
14
14
  };
15
15
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "symlink-dir",
3
- "version": "5.2.0",
3
+ "version": "6.0.0",
4
4
  "description": "Cross-platform directory symlinking",
5
5
  "main": "dist/index.js",
6
6
  "files": [
@@ -32,7 +32,7 @@
32
32
  },
33
33
  "homepage": "https://github.com/pnpm/symlink-dir#readme",
34
34
  "devDependencies": {
35
- "@types/node": "^16.18.3",
35
+ "@types/node": "^20.0.0",
36
36
  "@types/tape": "^4.13.2",
37
37
  "rimraf": "^3.0.2",
38
38
  "tape": "^5.6.1",
@@ -43,7 +43,7 @@
43
43
  },
44
44
  "dependencies": {
45
45
  "better-path-resolve": "^1.0.0",
46
- "rename-overwrite": "^4.0.3"
46
+ "rename-overwrite": "^5.0.0"
47
47
  },
48
48
  "mos": {
49
49
  "plugins": [
@@ -54,7 +54,7 @@
54
54
  }
55
55
  },
56
56
  "engines": {
57
- "node": ">=12.10"
57
+ "node": ">=18.12"
58
58
  },
59
59
  "scripts": {
60
60
  "pretest": "rimraf node_modules/src",