pnpm 11.5.3 → 11.7.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.
@@ -1,5 +1,25 @@
1
1
  export const isCode = (c) => name.has(c);
2
2
  export const isName = (c) => code.has(c);
3
+ /**
4
+ * types that are a normal file system entry, not metadata.
5
+ *
6
+ * These can be the subject of extended/globalExtended headers, long path
7
+ * names, long linkpath names, etc.
8
+ *
9
+ * Any other types are meta, and cannot be targetted by extended PAX headers.
10
+ */
11
+ export const normalFsTypes = new Set([
12
+ '0',
13
+ '',
14
+ '1',
15
+ '2',
16
+ '3',
17
+ '4',
18
+ '5',
19
+ '6',
20
+ '7',
21
+ 'D',
22
+ ]);
3
23
  // map types from key to human-friendly name
4
24
  export const name = new Map([
5
25
  ['0', 'File'],
@@ -2,7 +2,7 @@
2
2
  "author": "Isaac Z. Schlueter",
3
3
  "name": "tar",
4
4
  "description": "tar for node",
5
- "version": "7.5.15",
5
+ "version": "7.5.16",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "https://github.com/isaacs/node-tar.git"
@@ -31,20 +31,20 @@
31
31
  "yallist": "^5.0.0"
32
32
  },
33
33
  "devDependencies": {
34
- "@types/node": "^25.5.0",
34
+ "@types/node": "^25.9.1",
35
35
  "chmodr": "^2.0.2",
36
36
  "end-of-stream": "^1.4.3",
37
- "esbuild": "^0.27.4",
37
+ "esbuild": "^0.28.0",
38
38
  "events-to-array": "^2.0.3",
39
39
  "mutate-fs": "^2.1.1",
40
40
  "nock": "^13.5.4",
41
- "oxlint": "^1.57.0",
42
- "oxlint-tsgolint": "^0.17.3",
43
- "prettier": "^3.8.1",
41
+ "oxlint": "^1.67.0",
42
+ "oxlint-tsgolint": "^0.23.0",
43
+ "prettier": "^3.8.3",
44
44
  "rimraf": "^6.1.2",
45
- "tap": "^21.6.2",
46
- "tshy": "^3.3.2",
47
- "typedoc": "^0.28.18"
45
+ "tap": "^21.7.4",
46
+ "tshy": "^4.1.2",
47
+ "typedoc": "^0.28.19"
48
48
  },
49
49
  "license": "BlueOak-1.0.0",
50
50
  "engines": {
@@ -85,7 +85,8 @@
85
85
  "./header": "./src/header.ts",
86
86
  "./pax": "./src/pax.ts",
87
87
  "./types": "./src/types.ts"
88
- }
88
+ },
89
+ "selfLink": false
89
90
  },
90
91
  "exports": {
91
92
  "./package.json": "./package.json",