We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0194e3e commit fec9da9Copy full SHA for fec9da9
README.md
@@ -72,6 +72,13 @@ Executes a shell command with specified arguments and options.
72
```typescript
73
import { execute } from '@hyperse/exec-program';
74
75
+/**
76
+ * Execute a file with arguments and options
77
+ * @param file - The program/script to execute, as a string or file URL
78
+ * @param args - Arguments to pass to `file` on execution.
79
+ * @param options - Options to pass to `execa`
80
+ * @returns A `ResultPromise` that is both:
81
+ */
82
declare function execute<T extends ExecOptions>(
83
file: string,
84
args?: readonly string[],
0 commit comments