Skip to content

Commit

Permalink
Add support for Eask projects
Browse files Browse the repository at this point in the history
Eask is a drop-in alternative of Cask.
  • Loading branch information
bbatsov committed Feb 5, 2024
1 parent f7e6084 commit e45f0b0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
* [#1875](https://github.com/bbatsov/projectile/pull/1875): Add support for Sapling VCS.
* [#1876](https://github.com/bbatsov/projectile/pull/1876): Add support for Jujutsu VCS.
* [#1877](https://github.com/bbatsov/projectile/pull/1877): Add custom variable `projectile-cmd-hist-ignoredups`.
* Add support for Eask projects.

## 2.8.0 (2023-10-13)

Expand Down
7 changes: 7 additions & 0 deletions projectile.el
Original file line number Diff line number Diff line change
Expand Up @@ -3539,6 +3539,13 @@ a manual COMMAND-TYPE command is created with
:compile "cask install"
:test-prefix "test-"
:test-suffix "-test")

(projectile-register-project-type 'emacs-eask '("Eask")
:project-file "Eask"
:compile "eask install"
:test-prefix "test-"
:test-suffix "-test")

(projectile-register-project-type 'emacs-eldev #'projectile-eldev-project-p
:project-file "Eldev"
:compile "eldev compile"
Expand Down

0 comments on commit e45f0b0

Please sign in to comment.