Skip to content

Commit

Permalink
🐛 Add the npm: specifier for Deno
Browse files Browse the repository at this point in the history
  • Loading branch information
siguici committed Dec 31, 2024
1 parent 51a6575 commit f8ac679
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libs/create-qwikdev-astro/src/process.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ export const $pm = async (
const packageName = args[1];
const parts = packageName.split("/", 2);
const createCommand = parts[1]
? `${parts[0]}/create-${parts[1]}`
: `create-${parts[0]}`;
? `npm:${parts[0]}/create-${parts[1]}`
: `npm:create-${parts[0]}`;
args = ["run", "-A", createCommand, ...args.slice(2)];
} else if (["exec", "dlx"].includes(args[0])) {
switch (packageManager) {
Expand Down

0 comments on commit f8ac679

Please sign in to comment.