Skip to content

Commit

Permalink
deps: cmd-shim@6.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
lukekarrys committed May 7, 2024
1 parent dade2c8 commit 419f9b9
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
2 changes: 2 additions & 0 deletions DEPENDENCIES.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ graph LR;
normalize-package-data-->semver;
npm-->abbrev;
npm-->cacache;
npm-->cmd-shim;
npm-->fs-minipass;
npm-->hosted-git-info;
npm-->ini;
Expand Down Expand Up @@ -469,6 +470,7 @@ graph LR;
npm-->ci-info;
npm-->cli-columns;
npm-->cli-table3;
npm-->cmd-shim;
npm-->diff;
npm-->fastest-levenshtein;
npm-->fs-minipass;
Expand Down
2 changes: 1 addition & 1 deletion node_modules/cmd-shim/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const writeShim = (from, to) =>
const prog = shebang[2]
const args = shebang[3] || ''
return writeShim_(from, to, prog, args, vars)
}, er => writeShim_(from, to))
}, () => writeShim_(from, to))

const writeShim_ = (from, to, prog, args, variables) => {
let shTarget = relative(dirname(to), from)
Expand Down
10 changes: 5 additions & 5 deletions node_modules/cmd-shim/package.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
{
"name": "cmd-shim",
"version": "6.0.2",
"version": "6.0.3",
"description": "Used in npm for command line application support",
"scripts": {
"test": "tap",
"snap": "tap",
"lint": "eslint \"**/*.js\"",
"lint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\"",
"postlint": "template-oss-check",
"template-oss-apply": "template-oss-apply --force",
"lintfix": "npm run lint -- --fix",
"posttest": "npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com/npm/cmd-shim.git"
"url": "git+https://github.com/npm/cmd-shim.git"
},
"license": "ISC",
"devDependencies": {
"@npmcli/eslint-config": "^4.0.0",
"@npmcli/template-oss": "4.19.0",
"@npmcli/template-oss": "4.22.0",
"tap": "^16.0.1"
},
"files": [
Expand All @@ -41,7 +41,7 @@
"author": "GitHub Inc.",
"templateOSS": {
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
"version": "4.19.0",
"version": "4.22.0",
"publish": true
}
}
6 changes: 3 additions & 3 deletions package-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -3149,9 +3149,9 @@
}
},
"node_modules/cmd-shim": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/cmd-shim/-/cmd-shim-6.0.2.tgz",
"integrity": "sha512-+FFYbB0YLaAkhkcrjkyNLYDiOsFSfRjwjY19LXk/psmMx1z00xlCv7hhQoTGXXIKi+YXHL/iiFo8NqMVQX9nOw==",
"version": "6.0.3",
"resolved": "https://registry.npmjs.org/cmd-shim/-/cmd-shim-6.0.3.tgz",
"integrity": "sha512-FMabTRlc5t5zjdenF6mS0MBeFZm0XqHqeOkcskKFb/LYCcRQ5fVgLOHVc4Lq9CqABd9zhjwPjMBCJvMCziSVtA==",
"engines": {
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
}
Expand Down

0 comments on commit 419f9b9

Please sign in to comment.