momentic 0.0.7 → 0.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/bin/cli.js +2 -2
  2. package/package.json +1 -1
package/bin/cli.js CHANGED
@@ -3,7 +3,7 @@
3
3
  // src/cli.ts
4
4
  import chalk from "chalk";
5
5
  import { Command as Command4, Option } from "commander";
6
- import { execa } from "execa";
6
+ import { $ } from "execa";
7
7
  import waitOnFn from "wait-on";
8
8
 
9
9
  // ../../packages/types/src/commands.ts
@@ -3010,7 +3010,7 @@ program.command("run-tests").addOption(
3010
3010
  ).action(async (options) => {
3011
3011
  const { tests, start, waitOn, waitOnTimeout, apiKey } = options;
3012
3012
  console.log({ tests, start, waitOn, waitOnTimeout, apiKey });
3013
- void execa(start);
3013
+ void $`${start}`;
3014
3014
  await waitOnFn({
3015
3015
  resources: [waitOn],
3016
3016
  timeout: waitOnTimeout * 1e3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "momentic",
3
- "version": "0.0.7",
3
+ "version": "0.0.8",
4
4
  "description": "The Momentic SDK for Node.js",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",