Emacs: Add commands for yarn add {,--dev}
Alan Pearce alan@alanpearce.uk
Fri, 27 Jan 2017 16:02:51 +0100
1 files changed, 10 insertions(+), 0 deletions(-)
jump to
M tag-emacs/emacs.d/init.org → tag-emacs/emacs.d/init.org
@@ -439,6 +439,16 @@ (interactive "P") (projectile-with-default-dir (projectile-project-root) (cmd-to-echo "yarn" "install"))) + (defun yarn-add-dev (package) + (interactive "spackage: ") + (projectile-with-default-dir (projectile-project-root) + (cmd-to-echo "yarn" (concat "add --dev " package)))) + + (defun yarn-add (package) + (interactive "spackage: ") + (projectile-with-default-dir (projectile-project-root) + (cmd-to-echo "yarn" (concat "add " package)))) + (defun ap/open-work-project (&optional arg) (interactive "P") (ap/open-subfolder-project work-project-directory arg))