Skip to content

Commit 849dcb6

Browse files
authored
1 parent 60aa94b commit 849dcb6

File tree

242 files changed

+646
-22370
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

242 files changed

+646
-22370
lines changed

DEPENDENCIES.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -738,11 +738,9 @@ graph LR;
738738
string-width-->strip-ansi;
739739
strip-ansi-->ansi-regex;
740740
tar-->chownr;
741-
tar-->fs-minipass;
742741
tar-->isaacs-fs-minipass["@isaacs/fs-minipass"];
743742
tar-->minipass;
744743
tar-->minizlib;
745-
tar-->mkdirp;
746744
tar-->yallist;
747745
tinyglobby-->fdir;
748746
tinyglobby-->picomatch;

node_modules/.gitignore

Lines changed: 1 addition & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,6 @@
127127
!/minipass-sized/node_modules/minipass
128128
!/minipass
129129
!/minizlib
130-
!/mkdirp
131130
!/ms
132131
!/mute-stream
133132
!/negotiator
@@ -138,15 +137,12 @@
138137
/node-gyp/node_modules/@npmcli/*
139138
!/node-gyp/node_modules/@npmcli/agent
140139
!/node-gyp/node_modules/cacache
141-
!/node-gyp/node_modules/chownr
142140
!/node-gyp/node_modules/glob
143141
!/node-gyp/node_modules/jackspeak
144142
!/node-gyp/node_modules/lru-cache
145143
!/node-gyp/node_modules/make-fetch-happen
146144
!/node-gyp/node_modules/minimatch
147145
!/node-gyp/node_modules/path-scurry
148-
!/node-gyp/node_modules/tar
149-
!/node-gyp/node_modules/yallist
150146
!/nopt
151147
!/normalize-package-data
152148
!/npm-audit-report
@@ -162,11 +158,6 @@
162158
!/p-map
163159
!/package-json-from-dist
164160
!/pacote
165-
!/pacote/node_modules/
166-
/pacote/node_modules/*
167-
!/pacote/node_modules/chownr
168-
!/pacote/node_modules/tar
169-
!/pacote/node_modules/yallist
170161
!/parse-conflict-json
171162
!/path-key
172163
!/path-scurry
@@ -206,18 +197,7 @@
206197
!/tar
207198
!/tar/node_modules/
208199
/tar/node_modules/*
209-
!/tar/node_modules/fs-minipass
210-
!/tar/node_modules/fs-minipass/node_modules/
211-
/tar/node_modules/fs-minipass/node_modules/*
212-
!/tar/node_modules/fs-minipass/node_modules/minipass
213-
!/tar/node_modules/fs-minipass/node_modules/yallist
214-
!/tar/node_modules/minipass
215-
!/tar/node_modules/minizlib
216-
!/tar/node_modules/minizlib/node_modules/
217-
/tar/node_modules/minizlib/node_modules/*
218-
!/tar/node_modules/minizlib/node_modules/minipass
219-
!/tar/node_modules/minizlib/node_modules/yallist
220-
!/tar/node_modules/mkdirp
200+
!/tar/node_modules/yallist
221201
!/text-table
222202
!/tiny-relative-date
223203
!/tinyglobby

node_modules/chownr/LICENSE

Lines changed: 0 additions & 15 deletions
This file was deleted.
File renamed without changes.

node_modules/chownr/chownr.js

Lines changed: 0 additions & 167 deletions
This file was deleted.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

node_modules/chownr/package.json

Lines changed: 49 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,31 +2,68 @@
22
"author": "Isaac Z. Schlueter <[email protected]> (http://blog.izs.me/)",
33
"name": "chownr",
44
"description": "like `chown -R`",
5-
"version": "2.0.0",
5+
"version": "3.0.0",
66
"repository": {
77
"type": "git",
88
"url": "git://github.com/isaacs/chownr.git"
99
},
10-
"main": "chownr.js",
1110
"files": [
12-
"chownr.js"
11+
"dist"
1312
],
1413
"devDependencies": {
15-
"mkdirp": "0.3",
16-
"rimraf": "^2.7.1",
17-
"tap": "^14.10.6"
18-
},
19-
"tap": {
20-
"check-coverage": true
14+
"@types/node": "^20.12.5",
15+
"mkdirp": "^3.0.1",
16+
"prettier": "^3.2.5",
17+
"rimraf": "^5.0.5",
18+
"tap": "^18.7.2",
19+
"tshy": "^1.13.1",
20+
"typedoc": "^0.25.12"
2121
},
2222
"scripts": {
23+
"prepare": "tshy",
24+
"pretest": "npm run prepare",
2325
"test": "tap",
2426
"preversion": "npm test",
2527
"postversion": "npm publish",
26-
"prepublishOnly": "git push origin --follow-tags"
28+
"prepublishOnly": "git push origin --follow-tags",
29+
"format": "prettier --write . --loglevel warn",
30+
"typedoc": "typedoc --tsconfig .tshy/esm.json ./src/*.ts"
2731
},
28-
"license": "ISC",
32+
"license": "BlueOak-1.0.0",
2933
"engines": {
30-
"node": ">=10"
34+
"node": ">=18"
35+
},
36+
"tshy": {
37+
"exports": {
38+
"./package.json": "./package.json",
39+
".": "./src/index.ts"
40+
}
41+
},
42+
"exports": {
43+
"./package.json": "./package.json",
44+
".": {
45+
"import": {
46+
"types": "./dist/esm/index.d.ts",
47+
"default": "./dist/esm/index.js"
48+
},
49+
"require": {
50+
"types": "./dist/commonjs/index.d.ts",
51+
"default": "./dist/commonjs/index.js"
52+
}
53+
}
54+
},
55+
"main": "./dist/commonjs/index.js",
56+
"types": "./dist/commonjs/index.d.ts",
57+
"type": "module",
58+
"prettier": {
59+
"semi": false,
60+
"printWidth": 75,
61+
"tabWidth": 2,
62+
"useTabs": false,
63+
"singleQuote": true,
64+
"jsxSingleQuote": false,
65+
"bracketSameLine": true,
66+
"arrowParens": "avoid",
67+
"endOfLine": "lf"
3168
}
3269
}

0 commit comments

Comments
 (0)