@aspects-ai/workspace-cli 0.1.21 → 0.1.22

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 +5 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -6,7 +6,7 @@ import { Command as Command9 } from "commander";
6
6
  // package.json
7
7
  var package_default = {
8
8
  name: "@aspects-ai/workspace-cli",
9
- version: "0.1.20",
9
+ version: "0.1.21",
10
10
  private: false,
11
11
  description: "Lightweight CLI for installing libraries into workspaces",
12
12
  type: "module",
@@ -639,7 +639,10 @@ function createRemotionCommand() {
639
639
  const remotionCliDir = path7.dirname(remotionCliPath);
640
640
  const remotionBin = path7.join(remotionCliDir, "remotion-cli.js");
641
641
  try {
642
- await execa2("node", [remotionBin, ...args], {
642
+ const execArgs = [remotionBin, ...args];
643
+ console.error("DEBUG remotionBin:", remotionBin);
644
+ console.error("DEBUG execArgs:", execArgs);
645
+ await execa2("node", execArgs, {
643
646
  stdio: "inherit",
644
647
  cwd: process.cwd(),
645
648
  env: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aspects-ai/workspace-cli",
3
- "version": "0.1.21",
3
+ "version": "0.1.22",
4
4
  "private": false,
5
5
  "description": "Lightweight CLI for installing libraries into workspaces",
6
6
  "type": "module",