diff --git a/CHANGELOG.md b/CHANGELOG.md index 355ad66..a33f3e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,11 @@ -## v0.0.6 +## v0.2.0 [compare changes](https://github.com/HugoRCD/shelves/compare/v0.0.5...v0.0.6) ### 🚀 Enhancements -- Add create project CLI command, and lot of commands alias ([e9cccfd](https://github.com/HugoRCD/shelves/commit/e9cccfd)) +- Add create project CLI command, and a lot of commands alias ([e9cccfd](https://github.com/HugoRCD/shelves/commit/e9cccfd)) - Add create command alias init ([60fda92](https://github.com/HugoRCD/shelves/commit/60fda92)) - Auto-suggest and execute command on error ([cac833e](https://github.com/HugoRCD/shelves/commit/cac833e)) diff --git a/apps/app/.gitignore b/apps/app/.gitignore index b3d03e0..4f185cf 100644 --- a/apps/app/.gitignore +++ b/apps/app/.gitignore @@ -25,3 +25,6 @@ logs .env.preview .env.production .vercel + +# Shelve config +.shelve \ No newline at end of file diff --git a/apps/cli/CHANGELOG.md b/apps/cli/CHANGELOG.md deleted file mode 100644 index 276cd78..0000000 --- a/apps/cli/CHANGELOG.md +++ /dev/null @@ -1,31 +0,0 @@ -# Changelog - - -## v0.1.5 - -[compare changes](https://github.com/HugoRCD/shelve/compare/v0.0.3...v0.1.5) - -### 🚀 Enhancements - -- Use new eslint custom config ([ca137b7](https://github.com/HugoRCD/shelve/commit/ca137b7)) - -### 🩹 Fixes - -- Delete and create project cache ([16922e2](https://github.com/HugoRCD/shelve/commit/16922e2)) - -### 📖 Documentation - -- Add changelog.md ([4f155eb](https://github.com/HugoRCD/shelve/commit/4f155eb)) -- Update community template ([086b21c](https://github.com/HugoRCD/shelve/commit/086b21c)) -- Improve CLI package.json ([3232928](https://github.com/HugoRCD/shelve/commit/3232928)) - -### 🏡 Chore - -- Update renovate config ([7d790a9](https://github.com/HugoRCD/shelve/commit/7d790a9)) -- Apply automated lint fixes ([6680391](https://github.com/HugoRCD/shelve/commit/6680391)) -- Apply automated lint fixes ([e4ce9f8](https://github.com/HugoRCD/shelve/commit/e4ce9f8)) - -### ❤️ Contributors - -- HugoRCD ([@HugoRCD](http://github.com/HugoRCD)) - diff --git a/apps/cli/src/utils/suggest.ts b/apps/cli/src/utils/suggest.ts index e8175af..989e20e 100644 --- a/apps/cli/src/utils/suggest.ts +++ b/apps/cli/src/utils/suggest.ts @@ -6,7 +6,7 @@ import login from '../commands/login.ts' import { createProject } from './projects.ts' export async function suggestCreateProject(name?: string): Promise { - const accept = await consola.prompt('Do you want to create a project? (y/n)', { + const accept = await consola.prompt(`Do you want to create ${name ? 'the project' : 'a project'}? (y/n)`, { default: 'y', type: 'confirm', })