Updated the project.
This commit is contained in:
parent
5dfe9f128d
commit
7919556077
1550 changed files with 17063 additions and 40183 deletions
0
my-app/node_modules/@npmcli/fs/LICENSE.md
generated
vendored
Executable file → Normal file
0
my-app/node_modules/@npmcli/fs/LICENSE.md
generated
vendored
Executable file → Normal file
4
my-app/node_modules/@npmcli/fs/README.md
generated
vendored
Executable file → Normal file
4
my-app/node_modules/@npmcli/fs/README.md
generated
vendored
Executable file → Normal file
|
@ -54,8 +54,8 @@ Like `fs.readdir` but handling `@org/module` dirs as if they were
|
|||
a single entry.
|
||||
|
||||
```javascript
|
||||
const readdir = require('readdir-scoped-modules')
|
||||
const entries = await readdir('node_modules')
|
||||
const { readdirScoped } = require('@npmcli/fs')
|
||||
const entries = await readdirScoped('node_modules')
|
||||
// entries will be something like: ['a', '@org/foo', '@org/bar']
|
||||
```
|
||||
|
||||
|
|
0
my-app/node_modules/@npmcli/fs/lib/common/get-options.js
generated
vendored
Executable file → Normal file
0
my-app/node_modules/@npmcli/fs/lib/common/get-options.js
generated
vendored
Executable file → Normal file
0
my-app/node_modules/@npmcli/fs/lib/common/node.js
generated
vendored
Executable file → Normal file
0
my-app/node_modules/@npmcli/fs/lib/common/node.js
generated
vendored
Executable file → Normal file
0
my-app/node_modules/@npmcli/fs/lib/cp/LICENSE
generated
vendored
Executable file → Normal file
0
my-app/node_modules/@npmcli/fs/lib/cp/LICENSE
generated
vendored
Executable file → Normal file
0
my-app/node_modules/@npmcli/fs/lib/cp/errors.js
generated
vendored
Executable file → Normal file
0
my-app/node_modules/@npmcli/fs/lib/cp/errors.js
generated
vendored
Executable file → Normal file
0
my-app/node_modules/@npmcli/fs/lib/cp/index.js
generated
vendored
Executable file → Normal file
0
my-app/node_modules/@npmcli/fs/lib/cp/index.js
generated
vendored
Executable file → Normal file
0
my-app/node_modules/@npmcli/fs/lib/cp/polyfill.js
generated
vendored
Executable file → Normal file
0
my-app/node_modules/@npmcli/fs/lib/cp/polyfill.js
generated
vendored
Executable file → Normal file
0
my-app/node_modules/@npmcli/fs/lib/index.js
generated
vendored
Executable file → Normal file
0
my-app/node_modules/@npmcli/fs/lib/index.js
generated
vendored
Executable file → Normal file
0
my-app/node_modules/@npmcli/fs/lib/move-file.js
generated
vendored
Executable file → Normal file
0
my-app/node_modules/@npmcli/fs/lib/move-file.js
generated
vendored
Executable file → Normal file
0
my-app/node_modules/@npmcli/fs/lib/readdir-scoped.js
generated
vendored
Executable file → Normal file
0
my-app/node_modules/@npmcli/fs/lib/readdir-scoped.js
generated
vendored
Executable file → Normal file
0
my-app/node_modules/@npmcli/fs/lib/with-temp-dir.js
generated
vendored
Executable file → Normal file
0
my-app/node_modules/@npmcli/fs/lib/with-temp-dir.js
generated
vendored
Executable file → Normal file
10
my-app/node_modules/@npmcli/fs/package.json
generated
vendored
Executable file → Normal file
10
my-app/node_modules/@npmcli/fs/package.json
generated
vendored
Executable file → Normal file
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@npmcli/fs",
|
||||
"version": "3.1.0",
|
||||
"version": "3.1.1",
|
||||
"description": "filesystem utilities for the npm cli",
|
||||
"main": "lib/index.js",
|
||||
"files": [
|
||||
|
@ -11,7 +11,7 @@
|
|||
"snap": "tap",
|
||||
"test": "tap",
|
||||
"npmclilint": "npmcli-lint",
|
||||
"lint": "eslint \"**/*.js\"",
|
||||
"lint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\"",
|
||||
"lintfix": "npm run lint -- --fix",
|
||||
"posttest": "npm run lint",
|
||||
"postsnap": "npm run lintfix --",
|
||||
|
@ -20,7 +20,7 @@
|
|||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/npm/fs.git"
|
||||
"url": "git+https://github.com/npm/fs.git"
|
||||
},
|
||||
"keywords": [
|
||||
"npm",
|
||||
|
@ -30,7 +30,7 @@
|
|||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"@npmcli/eslint-config": "^4.0.0",
|
||||
"@npmcli/template-oss": "4.8.0",
|
||||
"@npmcli/template-oss": "4.22.0",
|
||||
"tap": "^16.0.1"
|
||||
},
|
||||
"dependencies": {
|
||||
|
@ -41,7 +41,7 @@
|
|||
},
|
||||
"templateOSS": {
|
||||
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
|
||||
"version": "4.8.0"
|
||||
"version": "4.22.0"
|
||||
},
|
||||
"tap": {
|
||||
"nyc-arg": [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue