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
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
* Generate log files in user directory (974a17e3b573520a775f813c72ecbd30a32012bf)
* Make sure there is no eval error in the root layer (fbd8eb4b91dfbb614b2b59a1a2a7fea9f594313d)
* Recognize `bsdtar` for windows (#64)
* Pick Eask-file by Emacs version, allow multiple Eask-files (#68)
* Add `-q`/`--quick` option for quickstart (#67)
* Pick Eask-file by Emacs version, allow multiple Eask-files (#68)
* Add command and directive for `run-script` (#69)
* Remove alias for `build` subcommand (#70)

## 0.7.x
> Released Sep 08, 2022
Expand Down
2 changes: 1 addition & 1 deletion cmds/core/compile.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

"use strict";

exports.command = ['compile [names..]', 'build [names..]'];
exports.command = ['compile [names..]'];
exports.desc = 'byte compile all Emacs Lisp files in the package';
exports.builder = {
names: {
Expand Down
2 changes: 1 addition & 1 deletion docs/content/en/Getting Started/Basic Usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Commands:
clean-all do all cleaning tasks
clean-elc remove byte compiled files generated by cask build
clean clean up local .eask directory
compile [names..] byte compile all Emacs Lisp files in the package [aliases: build]
compile [names..] byte compile all Emacs Lisp files in the package
concat [names..] concatenate all elisp files [aliases: concatenate]
create <name> create a new elisp project [aliases: new]
emacs [args..] execute emacs with the appropriate environment
Expand Down