-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: fork cross-spawn to fix esbuild chaos #25
Draft
43081j
wants to merge
1
commit into
main
Choose a base branch
from
cs-gone
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
MIT License | ||
|
||
Copyright (c) 2024 Tinylibs | ||
Copyright (c) 2018 Made With MOXY Lda <[email protected]> | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
import * as path from 'node:path'; | ||
import {env} from 'node:process'; | ||
import {type SpawnOptions} from 'node:child_process'; | ||
import {openSync, readSync, closeSync} from 'node:fs'; | ||
import {resolveCommand} from './resolve-command.js'; | ||
import {escapeArgument, escapeCommand} from './escape-command.js'; | ||
import {type ParsedShellOptions} from './shared-types.js'; | ||
import shebangCommand from 'shebang-command'; | ||
|
||
const isWin = process.platform === 'win32'; | ||
const isExecutableRegExp = /\.(?:com|exe)$/i; | ||
const isCmdShimRegExp = /node_modules[\\/].bin[\\/][^\\/]+\.cmd$/i; | ||
|
||
function readShebang(command: string): string | null { | ||
// Read the first 150 bytes from the file | ||
const size = 150; | ||
const buffer = Buffer.alloc(size); | ||
|
||
let fd; | ||
|
||
try { | ||
fd = openSync(command, 'r'); | ||
readSync(fd, buffer, 0, size, 0); | ||
closeSync(fd); | ||
} catch (e) { | ||
/* Empty */ | ||
} | ||
|
||
// Attempt to extract shebang (null is returned if not a shebang) | ||
return shebangCommand(buffer.toString()); | ||
} | ||
|
||
module.exports = readShebang; | ||
|
||
function detectShebang(parsed: ParsedShellOptions): string | undefined { | ||
const file = resolveCommand(parsed); | ||
|
||
const shebang = file && readShebang(file); | ||
|
||
if (shebang) { | ||
parsed.args.unshift(file); | ||
parsed.command = shebang; | ||
|
||
return resolveCommand(parsed); | ||
} | ||
|
||
return file; | ||
} | ||
|
||
function parseNonShell(parsed: ParsedShellOptions): ParsedShellOptions { | ||
if (!isWin) { | ||
return parsed; | ||
} | ||
|
||
// Detect & add support for shebangs | ||
const commandFile = detectShebang(parsed) ?? parsed.command; | ||
|
||
// We don't need a shell if the command filename is an executable | ||
const needsShell = !isExecutableRegExp.test(commandFile); | ||
|
||
// If a shell is required, use cmd.exe and take care of escaping everything correctly | ||
if (needsShell) { | ||
// Need to double escape meta chars if the command is a cmd-shim located in `node_modules/.bin/` | ||
// The cmd-shim simply calls execute the package bin file with NodeJS, proxying any argument | ||
// Because the escape of metachars with ^ gets interpreted when the cmd.exe is first called, | ||
// we need to double escape them | ||
const needsDoubleEscapeMetaChars = isCmdShimRegExp.test(commandFile); | ||
|
||
// Normalize posix paths into OS compatible paths (e.g.: foo/bar -> foo\bar) | ||
// This is necessary otherwise it will always fail with ENOENT in those cases | ||
parsed.command = path.normalize(parsed.command); | ||
|
||
// Escape command & arguments | ||
parsed.command = escapeCommand(parsed.command); | ||
parsed.args = parsed.args.map((arg) => | ||
escapeArgument(arg, needsDoubleEscapeMetaChars) | ||
); | ||
|
||
const shellCommand = [parsed.command].concat(parsed.args).join(' '); | ||
|
||
parsed.args = ['/d', '/s', '/c', `"${shellCommand}"`]; | ||
parsed.command = env.comspec || 'cmd.exe'; | ||
parsed.options.windowsVerbatimArguments = true; // Tell node's spawn that the arguments are already escaped | ||
} | ||
|
||
return parsed; | ||
} | ||
|
||
export function parse(command: string, args: string[], options: SpawnOptions) { | ||
if (options.shell) { | ||
return {command, args, options}; | ||
} | ||
|
||
const argsCopy = args.slice(0); | ||
const optionsCopy = {...options}; | ||
|
||
// Build our parsed object | ||
const parsed: ParsedShellOptions = { | ||
command, | ||
args: argsCopy, | ||
options: optionsCopy | ||
}; | ||
|
||
return parseNonShell(parsed); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
// See http://www.robvanderwoude.com/escapechars.php | ||
const metaCharsRegExp = /([()\][%!^"`<>&|;, *?])/g; | ||
|
||
export function escapeCommand(arg: string) { | ||
// Escape meta chars | ||
return arg.replace(metaCharsRegExp, '^$1'); | ||
} | ||
|
||
export function escapeArgument(arg: string, doubleEscapeMetaChars: boolean) { | ||
// Convert to string | ||
arg = `${arg}`; | ||
|
||
// Algorithm below is based on https://qntm.org/cmd | ||
|
||
// Sequence of backslashes followed by a double quote: | ||
// double up all the backslashes and escape the double quote | ||
arg = arg.replace(/(\\*)"/g, '$1$1\\"'); | ||
|
||
// Sequence of backslashes followed by the end of the string | ||
// (which will become a double quote later): | ||
// double up all the backslashes | ||
arg = arg.replace(/(\\*)$/, '$1$1'); | ||
|
||
// All other backslashes occur literally | ||
|
||
// Quote the whole thing: | ||
arg = `"${arg}"`; | ||
|
||
// Escape meta chars | ||
arg = arg.replace(metaCharsRegExp, '^$1'); | ||
|
||
// Double escape meta chars if necessary | ||
if (doubleEscapeMetaChars) { | ||
arg = arg.replace(metaCharsRegExp, '^$1'); | ||
} | ||
|
||
return arg; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
import * as path from 'node:path'; | ||
import {chdir} from 'node:process'; | ||
import which from 'which'; | ||
import {getPathFromEnv} from './env.js'; | ||
import {type ParsedShellOptions} from './shared-types.js'; | ||
|
||
function resolveCommandAttempt( | ||
parsed: ParsedShellOptions, | ||
withoutPathExt: boolean | ||
): string | undefined { | ||
const env = parsed.options.env || process.env; | ||
const cwd = process.cwd(); | ||
const hasCustomCwd = parsed.options.cwd != null; | ||
// Worker threads do not have process.chdir() | ||
const shouldSwitchCwd = | ||
hasCustomCwd && | ||
chdir !== undefined && | ||
!(chdir as typeof chdir & {disabled?: boolean}).disabled; | ||
|
||
// If a custom `cwd` was specified, we need to change the process cwd | ||
// because `which` will do stat calls but does not support a custom cwd | ||
if (shouldSwitchCwd && typeof parsed.options.cwd === 'string') { | ||
try { | ||
chdir(parsed.options.cwd); | ||
} catch (err) { | ||
/* Empty */ | ||
} | ||
} | ||
|
||
let resolved; | ||
|
||
try { | ||
resolved = which.sync(parsed.command, { | ||
path: getPathFromEnv(env).value, | ||
pathExt: withoutPathExt ? path.delimiter : undefined | ||
}); | ||
} catch (e) { | ||
/* Empty */ | ||
} finally { | ||
if (shouldSwitchCwd) { | ||
chdir(cwd); | ||
} | ||
} | ||
|
||
// If we successfully resolved, ensure that an absolute path is returned | ||
// Note that when a custom `cwd` was used, we need to resolve to an absolute path based on it | ||
if (resolved) { | ||
resolved = path.resolve( | ||
hasCustomCwd && typeof parsed.options.cwd === 'string' | ||
? parsed.options.cwd | ||
: '', | ||
resolved | ||
); | ||
} | ||
|
||
return resolved; | ||
} | ||
|
||
export function resolveCommand(parsed: ParsedShellOptions): string | undefined { | ||
return ( | ||
resolveCommandAttempt(parsed, false) || resolveCommandAttempt(parsed, true) | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import {type SpawnOptions} from 'node:child_process'; | ||
|
||
export interface ParsedShellOptions { | ||
command: string; | ||
args: string[]; | ||
options: SpawnOptions; | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Whats that?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the license of cross-spawn. any usage of the original code needs to maintain the copyright