Initial project import
This commit is contained in:
35
node_modules/concurrently/dist/lib/command-parser/expand-shortcut.js
generated
vendored
Normal file
35
node_modules/concurrently/dist/lib/command-parser/expand-shortcut.js
generated
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
/**
|
||||
* Expands shortcuts according to the following table:
|
||||
*
|
||||
* | Syntax | Expands to |
|
||||
* | --------------- | --------------------- |
|
||||
* | `npm:<script>` | `npm run <script>` |
|
||||
* | `pnpm:<script>` | `pnpm run <script>` |
|
||||
* | `yarn:<script>` | `yarn run <script>` |
|
||||
* | `bun:<script>` | `bun run <script>` |
|
||||
* | `node:<script>` | `node --run <script>` |
|
||||
* | `deno:<script>` | `deno task <script>` |
|
||||
*/
|
||||
export class ExpandShortcut {
|
||||
parse(commandInfo) {
|
||||
const [, prefix, script, args] = /^(npm|yarn|pnpm|bun|node|deno):(\S+)(.*)/.exec(commandInfo.command) || [];
|
||||
if (!script) {
|
||||
return commandInfo;
|
||||
}
|
||||
let command;
|
||||
if (prefix === 'node') {
|
||||
command = 'node --run';
|
||||
}
|
||||
else if (prefix === 'deno') {
|
||||
command = 'deno task';
|
||||
}
|
||||
else {
|
||||
command = `${prefix} run`;
|
||||
}
|
||||
return {
|
||||
...commandInfo,
|
||||
name: commandInfo.name || script,
|
||||
command: `${command} ${script}${args}`,
|
||||
};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user