Skip to content

Commit

Permalink
fix: update package version to 3.0.0 and adjust BUNDLE_VERSION in CLI
Browse files Browse the repository at this point in the history
  • Loading branch information
rsaz committed Dec 4, 2024
1 parent 915dc11 commit 23ef462
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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`);

Expand Down
4 changes: 1 addition & 3 deletions src/new/form.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 23ef462

Please sign in to comment.