momentic 0.0.16 → 0.0.17

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 +5 -2
  2. package/package.json +1 -1
package/bin/cli.js CHANGED
@@ -3277,11 +3277,14 @@ program.command("run-tests").addOption(
3277
3277
  "https://api.momentic.ai"
3278
3278
  )
3279
3279
  ).addOption(
3280
- new Option("--remote", "run tests remotely").default(true).conflicts(["local", "start, waitOn, waitOnTimeout"])
3280
+ new Option("--remote", "run tests remotely").default(true).conflicts(["start, waitOn, waitOnTimeout"]).implies({
3281
+ local: false
3282
+ })
3281
3283
  ).addOption(
3282
3284
  new Option("--local", "run tests locally").implies({
3283
3285
  start: "npm run start",
3284
- waitOn: "http://localhost:3000"
3286
+ waitOn: "http://localhost:3000",
3287
+ remote: false
3285
3288
  })
3286
3289
  ).addOption(new Option("--start <command>", "specify start command")).addOption(new Option("--wait-on <url>", "specify URL to wait on")).addOption(
3287
3290
  new Option(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "momentic",
3
- "version": "0.0.16",
3
+ "version": "0.0.17",
4
4
  "description": "The Momentic SDK for Node.js",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",