@vexdo/cli 0.2.1 → 0.2.2

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/dist/index.js +0 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1222,9 +1222,6 @@ async function checkCodexAvailable() {
1222
1222
  }
1223
1223
  async function submitTask(prompt, options) {
1224
1224
  const args = ["cloud", "exec", prompt];
1225
- if (options?.cwd) {
1226
- args.push("-C", options.cwd);
1227
- }
1228
1225
  const result = await runCodexCommand(args, { cwd: options?.cwd });
1229
1226
  const sessionId = parseSessionId(result.stdout);
1230
1227
  if (result.exitCode !== 0 || !sessionId) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vexdo/cli",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "bin": {