-
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathEask
More file actions
22 lines (17 loc) · 565 Bytes
/
Eask
File metadata and controls
22 lines (17 loc) · 565 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
;; -*- mode: eask; lexical-binding: t -*-
(package "cli"
"0.12.10"
"A set of command-line tools to build Emacs packages")
(website-url "https://github.com/emacs-eask/cli")
(keywords "emacs" "package" "management" "cli")
(script "test" "echo \"Error: no test specified\" && exit 1")
(script "install" "npm install")
(script "setup-doc" "cd ./docs/themes/geekdoc/ && npm install && npm run build")
(script "serve-doc" "cd ./docs/ && hugo server")
(files
"eask"
"bin"
"cmds/**/*.js"
"lisp/**/*.el"
"src")
(depends-on "emacs" "26.1")