Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
* Add keywords command and it's linter (#54)
* Handle many-to-one condition for version string (0ac654face0557ff74c4a6048fc8bef59c915ec8)
* Add new option `--log-file`, `--lf` to generate log files (#57)
* Rename package to `@emacs-eask/cli` (#60)

## 0.6.17
> Released Mar 5, 2022
Expand Down
2 changes: 1 addition & 1 deletion cmds/util/upgrade-eask.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ exports.handler = async (argv) => {
console.log('');
console.log('For example, if you install eask with npm:');
console.log('');
console.log(' $ npm install -g @emacs-eask/eask@latest');
console.log(' $ npm install -g @emacs-eask/cli@latest');
console.log('');
process.stdout.write('Visit https://emacs-eask.github.io/Getting-Started/Install-Eask/ to see all available install options');
});
Expand Down
2 changes: 1 addition & 1 deletion docs/content/en/Getting Started/Install Eask.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ If you have [npm](https://www.npmjs.com/) installed on your machine, you can
install Eask with the following one-liner:

```sh
$ npm install -g @emacs-eask/eask
$ npm install -g @emacs-eask/cli
```

### Homebrew (macOS or Linux)
Expand Down
4 changes: 2 additions & 2 deletions docs/content/en/Getting Started/Quick Start.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ from our [release](https://github.com/emacs-eask/eask/releases) page.
## Step 2: Install Eask

```sh
$ npm install -g @emacs-eask/eask
$ npm install -g @emacs-eask/cli
```

To verify your new install:
To verify your new installation:

```sh
$ eask --version
Expand Down
2 changes: 1 addition & 1 deletion docs/content/en/Troubleshooting/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ yourself:

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

{{< hint warning >}}
Expand Down
36 changes: 18 additions & 18 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": "@emacs-eask/eask",
"name": "@emacs-eask/cli",
"version": "0.6.43",
"description": "A set of command-line tools to build Emacs packages",
"main": "eask",
Expand Down