Skip to content

Commit

Permalink
update command.js
Browse files Browse the repository at this point in the history
  • Loading branch information
ElvisAns authored Nov 15, 2024
1 parent 644bc0c commit e709f17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions command.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ program
.description('Deploy a script version of your script, stage it to be used on a page')
.option("--file <string>", "relative path of the file to the scripts/ folder eg. test.js if the file is right inside the scripts folder")
.option("--version <string>", "semantic version eg. 1.0.0, dev version is used to deploy the script that will be in sync with your local development file")
.option("--location <string>", "body|head")
.option("--location <string>", "header|footer")
.action((options) => deploy(options));


Expand Down Expand Up @@ -78,4 +78,4 @@ program
console.log(colors.red("Retrivial argument can only be 'site' or 'page', " + retrievial + " supplied"));
});

program.parse();
program.parse();

0 comments on commit e709f17

Please sign in to comment.