We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a7f1d8 commit a9bdf6fCopy full SHA for a9bdf6f
2 files changed
package.json
@@ -1,6 +1,6 @@
1
{
2
"scripts": {
3
- "build": "bun src/Cli.ts && cp -r template dist/template",
+ "build": "bun src/Cli.ts",
4
"changeset:publish": "bun src/Cli.ts publish:prepare && changeset publish && bun src/Cli.ts publish:post",
5
"changeset:version": "changeset version",
6
"check": "biome check --fix --unsafe",
src/internal/cli/commands.ts
@@ -141,7 +141,7 @@ export async function createNew(command: Command) {
141
const spinner = clack.spinner()
142
spinner.start('Creating project')
143
144
- const templatePath = path.join(import.meta.dirname, '../../template')
+ const templatePath = path.join(import.meta.dirname, '../../../template')
145
146
// Recursively copy
147
function cp(src: string, dest: string): void {
0 commit comments