@@ -3,13 +3,37 @@ import { stripQuotes } from '../../ast-helpers.js';
3
3
import { hasImportSpecifier } from '../helpers.js' ;
4
4
import { scriptVisitor as visit } from '../index.js' ;
5
5
6
+ const tags = new Set ( [ '$' , '$sync' ] ) ;
7
+ const methods = new Set ( [ 'execa' , 'execaSync' , 'execaCommand' , 'execaCommandSync' , '$sync' ] ) ;
8
+
6
9
export default visit (
7
10
sourceFile => sourceFile . statements . some ( node => hasImportSpecifier ( node , 'execa' ) ) ,
8
11
node => {
9
12
if ( ts . isTaggedTemplateExpression ( node ) ) {
10
- if ( node . tag . getText ( ) === '$' || ( ts . isCallExpression ( node . tag ) && node . tag . expression . getText ( ) === '$' ) ) {
13
+ if ( tags . has ( node . tag . getText ( ) ) || ( ts . isCallExpression ( node . tag ) && tags . has ( node . tag . expression . getText ( ) ) ) ) {
11
14
return stripQuotes ( node . template . getText ( ) ) ;
12
15
}
13
16
}
17
+
18
+ if ( ts . isCallExpression ( node ) ) {
19
+ const functionName = node . expression . getText ( ) ;
20
+ if ( methods . has ( functionName ) ) {
21
+ if ( functionName . startsWith ( 'execaCommand' ) ) {
22
+ if ( node . arguments [ 0 ] && ts . isStringLiteral ( node . arguments [ 0 ] ) ) {
23
+ return stripQuotes ( node . arguments [ 0 ] . getText ( ) ) ;
24
+ }
25
+ } else {
26
+ const [ executable , args ] = node . arguments ;
27
+ if ( executable && ts . isStringLiteral ( executable ) ) {
28
+ const executableStr = stripQuotes ( executable . getText ( ) ) ;
29
+ if ( args && ts . isArrayLiteralExpression ( args ) ) {
30
+ const argStrings = args . elements . filter ( ts . isStringLiteral ) . map ( arg => stripQuotes ( arg . getText ( ) ) ) ;
31
+ return [ executableStr , ...argStrings ] . join ( ' ' ) ;
32
+ }
33
+ return executableStr ;
34
+ }
35
+ }
36
+ }
37
+ }
14
38
}
15
39
) ;
0 commit comments