[READ-ONLY] Mirror of https://github.com/bombshell-dev/tools. Internal CLI to standardize tooling across all Bombshell projects
0

Configure Feed

Select the types of activity you want to include in your feed.

fix: remove self import

Nate Moore (Mar 30, 2025, 9:28 PM -0500) 488b2a53 404bd297

+1 -5
+1 -5
src/commands/init.ts
··· 12 12 for await (const line of x("pnpx", ["giget@latest", "gh:bombshell-dev/template", name])) { 13 13 console.log(line); 14 14 } 15 - const { 16 - default: { version }, 17 - } = await import("@bomb.sh/nucleus/package.json", { with: { type: "json" } }); 18 15 19 16 const promises: Promise<void>[] = []; 20 17 for (const file of ["package.json", "README.md"]) { 21 18 promises.push(postprocess(new URL(file, dest), (contents) => { 22 19 return contents 23 - .replaceAll("$name", name) 24 - .replaceAll("$nucleus_version", version); 20 + .replaceAll("$name", name); 25 21 })); 26 22 } 27 23 await Promise.all(promises);