Skip to content

Commit

Permalink
docs: use only one changelog.md
Browse files Browse the repository at this point in the history
  • Loading branch information
HugoRCD committed Mar 31, 2024
1 parent aeb219f commit 2dd5139
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 34 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))

Expand Down
3 changes: 3 additions & 0 deletions apps/app/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,6 @@ logs
.env.preview
.env.production
.vercel

# Shelve config
.shelve
31 changes: 0 additions & 31 deletions apps/cli/CHANGELOG.md

This file was deleted.

2 changes: 1 addition & 1 deletion apps/cli/src/utils/suggest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import login from '../commands/login.ts'
import { createProject } from './projects.ts'

export async function suggestCreateProject(name?: string): Promise<Project | null> {
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',
})
Expand Down

0 comments on commit 2dd5139

Please sign in to comment.