@aspects-ai/workspace-cli 0.1.18 → 0.1.19
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.
- package/dist/index.js +2 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -627,8 +627,10 @@ import { createRequire } from "module";
|
|
|
627
627
|
import path7 from "path";
|
|
628
628
|
function createRemotionCommand() {
|
|
629
629
|
const command = new Command5("remotion").description("Run remotion CLI commands using the bundled remotion installation").allowUnknownOption().allowExcessArguments().action(async () => {
|
|
630
|
+
console.error("DEBUG process.argv:", process.argv);
|
|
630
631
|
const remotionIndex = process.argv.findIndex((arg) => arg === "remotion");
|
|
631
632
|
const args = remotionIndex !== -1 ? process.argv.slice(remotionIndex + 1) : [];
|
|
633
|
+
console.error("DEBUG remotionIndex:", remotionIndex, "args:", args);
|
|
632
634
|
const require2 = createRequire(import.meta.url);
|
|
633
635
|
const remotionCliPath = require2.resolve("@remotion/cli/package.json");
|
|
634
636
|
const remotionCliDir = path7.dirname(remotionCliPath);
|