Skip to content

Commit

Permalink
fix: package name change
Browse files Browse the repository at this point in the history
  • Loading branch information
halfmoon-mind committed Jun 25, 2023
1 parent 39f0073 commit 5462992
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
# up-date
# up-d4te

> This readme is automatically generated by [create-ink-app](https://github.com/vadimdemedes/create-ink-app)
## Install

```bash
$ npm install --global up-date
$ npm install --global up-d4te
```

## CLI

```
$ up-date --help
$ up-d4te --help
Usage
$ up-date
$ up-d4te
Options
--name Your name
Examples
$ up-date --name=Jane
$ up-d4te --name=Jane
Hello, Jane
```
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "up-date",
"name": "up-d4te",
"version": "0.0.0",
"license": "MIT",
"bin": "dist/cli.js",
Expand Down
2 changes: 1 addition & 1 deletion source/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const App = () => {
.prompt({
type: 'input',
name: 'username',
message: 'What is your name?'
message: 'What is your name?!'
})
.then(answer => setName(answer.username));
}, []);
Expand Down
4 changes: 2 additions & 2 deletions source/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ import App from './app.js';
const cli = meow(
`
Usage
$ up-date
$ up-d4te
Options
--name Your name
Examples
$ up-date --name=Jane
$ up-d4te --name=Jane
Hello, Jane
`,
{
Expand Down

0 comments on commit 5462992

Please sign in to comment.