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 @@ -15,6 +15,7 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
* fix(lisp): Set up paths regardless of the working environment ([#386](../../pull/386))
* feat(cmds): Move `el2org` to docs subcommand ([#388](../../pull/388))
* fix(lisp): Report error only inside the command's execution ([#389](../../pull/389))
* fix: Correct entry file name to `eask.js` instead of `eask` ([#397](../../pull/397))

## 0.12.x
> Released Dec 02, 2025
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions bin/eask
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ function _get_current_directory()
elif realpath -e -L "${0}" &>/dev/null
then
CDIR="$(realpath -e -L "${0}")"
CDIR="${CDIR%/eask}"
CDIR="${CDIR%/eask.js}"
fi
}

CDIR="$(pwd)"
_get_current_directory

node "$CDIR/../eask" "$@"
node "$CDIR/../eask.js" "$@"
2 changes: 1 addition & 1 deletion bin/eask.bat
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
:: You should have received a copy of the GNU General Public License
:: along with this program. If not, see <https://www.gnu.org/licenses/>.

node "%~dp0/../eask" %*
node "%~dp0/../eask.js" %*
0 eask → eask.js
100755 → 100644
File renamed without changes.
4 changes: 2 additions & 2 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@emacs-eask/cli",
"version": "0.12.5",
"description": "A set of command-line tools to build Emacs packages",
"main": "eask",
"main": "eask.js",
"scripts": {
"test-unsafe": "cross-env ALLOW_UNSAFE=1 jest",
"test-debug": "cross-env DEBUG=1 jest",
Expand All @@ -17,7 +17,7 @@
"pkg-win-x64": "pkg package.json -t node*-win-x64 --output dist/eask --public"
},
"bin": {
"eask": "./eask"
"eask": "./eask.js"
},
"repository": {
"type": "git",
Expand Down