Comparing version 9.5.1 to 9.5.2
@@ -78,3 +78,7 @@ import {ChildProcess} from 'node:child_process'; | ||
const nextRawCharacter = rawTemplate[rawIndex + 1]; | ||
if (nextRawCharacter === 'u' && rawTemplate[rawIndex + 2] === '{') { | ||
if (nextRawCharacter === '\n') { | ||
// Handles escaped newlines in templates | ||
templateIndex -= 1; | ||
rawIndex += 1; | ||
} else if (nextRawCharacter === 'u' && rawTemplate[rawIndex + 2] === '{') { | ||
rawIndex = rawTemplate.indexOf('}', rawIndex + 3); | ||
@@ -81,0 +85,0 @@ } else { |
{ | ||
"name": "execa", | ||
"version": "9.5.1", | ||
"version": "9.5.2", | ||
"description": "Process execution for humans", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
324196
7842