diff options
Diffstat (limited to 'node_modules/concurrently/dist/src/command-parser/expand-npm-shortcut.js')
| -rw-r--r-- | node_modules/concurrently/dist/src/command-parser/expand-npm-shortcut.js | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/node_modules/concurrently/dist/src/command-parser/expand-npm-shortcut.js b/node_modules/concurrently/dist/src/command-parser/expand-npm-shortcut.js deleted file mode 100644 index 9a62362..0000000 --- a/node_modules/concurrently/dist/src/command-parser/expand-npm-shortcut.js +++ /dev/null @@ -1,20 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.ExpandNpmShortcut = void 0; -/** - * Expands commands prefixed with `npm:`, `yarn:`, `pnpm:`, or `bun:` into the full version `npm run <command>` and so on. - */ -class ExpandNpmShortcut { - parse(commandInfo) { - const [, npmCmd, cmdName, args] = commandInfo.command.match(/^(npm|yarn|pnpm|bun):(\S+)(.*)/) || []; - if (!cmdName) { - return commandInfo; - } - return { - ...commandInfo, - name: commandInfo.name || cmdName, - command: `${npmCmd} run ${cmdName}${args}`, - }; - } -} -exports.ExpandNpmShortcut = ExpandNpmShortcut; |
