diff --git a/package.json b/package.json index f56c9cd..f5eba84 100644 --- a/package.json +++ b/package.json @@ -65,7 +65,7 @@ "@codecov/vite-plugin": "0.0.1-beta.9", "@commitlint/cli": "19.2.1", "@commitlint/config-conventional": "19.1.0", - "@expressots/shared": "3.0.0-beta.4", + "@expressots/shared": "3.0.0", "@release-it/conventional-changelog": "7.0.2", "@types/chalk-animation": "1.6.1", "@types/cli-progress": "3.11.0", diff --git a/src/cli.ts b/src/cli.ts index e2fd313..2ef9daf 100644 --- a/src/cli.ts +++ b/src/cli.ts @@ -22,7 +22,7 @@ import { scriptsCommand } from "./scripts"; * The current version of the ExpressoTS Bundle. * core, adapters, and cli. */ -export const BUNDLE_VERSION = "3.0.0-beta.1"; +export const BUNDLE_VERSION = "3.0.0"; stdout.write(`\n${[chalk.bold.green("🐎 Expressots")]}\n\n`); diff --git a/src/new/form.ts b/src/new/form.ts index 03731d4..f6a1b70 100644 --- a/src/new/form.ts +++ b/src/new/form.ts @@ -242,9 +242,7 @@ const projectForm = async ( const repo: string = `expressots/templates/${templates[template]}#${BUNDLE_VERSION}`; try { - const emitter = degit( - `expressots/templates/${templates[template]}`, - ); + const emitter = degit(repo); await emitter.clone(answer.name); } catch (err: any) {