(template: string)
| 6 | export const SHELL_REGEX = /!`([^`]+)`/g |
| 7 | |
| 8 | export function files(template: string) { |
| 9 | return Array.from(template.matchAll(FILE_REGEX)) |
| 10 | } |
| 11 | |
| 12 | export function shell(template: string) { |
| 13 | return Array.from(template.matchAll(SHELL_REGEX)) |
no test coverage detected