Skip to content

Commit

Permalink
fixed bin deps
Browse files Browse the repository at this point in the history
  • Loading branch information
ortexx committed Feb 14, 2024
1 parent f3a2c08 commit 6b0d803
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion bin/actions.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import chalk from "chalk";
import yargs from "yargs";
import srcUtils from "../src/utils.js";
const argv = yargs.argv;

const argv = yargs(process.argv).argv;

/**
* Show the node status info
Expand Down
2 changes: 1 addition & 1 deletion bin/runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import merge from "lodash-es/merge.js";
import { Spinner } from "cli-spinner";
import utils from "./utils.js";

const argv = yargs.argv;
const argv = yargs(process.argv).argv;

export default async (name, Node, actions) => {
let node;
Expand Down
Loading

1 comment on commit 6b0d803

@caco26i
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good Catch.

Please sign in to comment.