Skip to content

Commit 1912ff4

Browse files
authored
refactor(package.json): Rename package name to @emacs-eask/cli (#60)
* refactor(package.json): Rename package name to @emacs-eask/cli * docs(CHANGELOG): update * rename instruction * update pacakge-lock
1 parent 113a851 commit 1912ff4

File tree

7 files changed

+25
-24
lines changed

7 files changed

+25
-24
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
2727
* Add keywords command and it's linter (#54)
2828
* Handle many-to-one condition for version string (0ac654face0557ff74c4a6048fc8bef59c915ec8)
2929
* Add new option `--log-file`, `--lf` to generate log files (#57)
30+
* Rename package to `@emacs-eask/cli` (#60)
3031

3132
## 0.6.17
3233
> Released Mar 5, 2022

cmds/util/upgrade-eask.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ exports.handler = async (argv) => {
4747
console.log('');
4848
console.log('For example, if you install eask with npm:');
4949
console.log('');
50-
console.log(' $ npm install -g @emacs-eask/eask@latest');
50+
console.log(' $ npm install -g @emacs-eask/cli@latest');
5151
console.log('');
5252
process.stdout.write('Visit https://emacs-eask.github.io/Getting-Started/Install-Eask/ to see all available install options');
5353
});

docs/content/en/Getting Started/Install Eask.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ If you have [npm](https://www.npmjs.com/) installed on your machine, you can
2525
install Eask with the following one-liner:
2626

2727
```sh
28-
$ npm install -g @emacs-eask/eask
28+
$ npm install -g @emacs-eask/cli
2929
```
3030

3131
### Homebrew (macOS or Linux)

docs/content/en/Getting Started/Quick Start.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ from our [release](https://github.com/emacs-eask/eask/releases) page.
2929
## Step 2: Install Eask
3030

3131
```sh
32-
$ npm install -g @emacs-eask/eask
32+
$ npm install -g @emacs-eask/cli
3333
```
3434

35-
To verify your new install:
35+
To verify your new installation:
3636

3737
```sh
3838
$ eask --version

docs/content/en/Troubleshooting/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ yourself:
2222

2323
* Make sure that you have the latest Eask version. You can determine the current
2424
Eask version with `eask --version`.
25-
* Upgrade Eask with `eask upgrade-eask` or `npm install -g @emacs-eask/eask@latest`
25+
* Upgrade Eask with `eask upgrade-eask` or `npm install -g @emacs-eask/cli@latest`
2626
if you chose to install from `npm`.
2727

2828
{{< hint warning >}}

package-lock.json

Lines changed: 18 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@emacs-eask/eask",
2+
"name": "@emacs-eask/cli",
33
"version": "0.6.43",
44
"description": "A set of command-line tools to build Emacs packages",
55
"main": "eask",

0 commit comments

Comments
 (0)