Fixed double import
Some checks failed
Publish Library / Build NPM Project (push) Failing after 17s
Publish Library / Publish CDN & Docs (push) Has been skipped
Publish Library / Tag Version (push) Has been skipped

This commit is contained in:
2025-12-27 14:37:54 -05:00
parent a5e940b003
commit 692752fb30

View File

@@ -1,5 +1,4 @@
import {execSync} from 'child_process'; import {execSync, spawn} from 'node:child_process';
import {spawn} from 'node:child_process';
export function $(str: TemplateStringsArray, ...args: string[]): Promise<string> { export function $(str: TemplateStringsArray, ...args: string[]): Promise<string> {
let cmd = str.reduce((acc, part, i) => acc + part + (args[i] || ''), ''); let cmd = str.reduce((acc, part, i) => acc + part + (args[i] || ''), '');