Skip to content

Commit

Permalink
Merge pull request #7 from Xyndra/main
Browse files Browse the repository at this point in the history
Update cli.js to improve deno install
  • Loading branch information
Tsuzat authored Jan 19, 2025
2 parents 94dd751 + 6108a15 commit 9e2f62c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ async function installDependencies() {
installCommand = `bun add ${dependencies.join(' ')} --dev`;
break;
case 'deno':
installCommand = `deno install --save-dev ${dependencies.join(' npm:')}`;
installCommand = `deno install --dev npm:${dependencies.join(' npm:')}`;
break;
default: // This would not happen but just in case
console.log('No package manager detected. Do not worry just install following packages');
Expand Down

0 comments on commit 9e2f62c

Please sign in to comment.