From 9b2730e0318b6a5821fb672a90afddfda00ebb3a Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Thu, 16 Oct 2014 16:58:24 -0700 Subject: [PATCH] add npm to linux dependencies update npm dependencies to inlcude js-beautify. emacs.d bump for jsmode stuff --- dotfiles/emacs.d | 2 +- resources/npm.sh | 3 ++- tasks/linux.py | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/dotfiles/emacs.d b/dotfiles/emacs.d index aa9d29fd..8c5f224f 160000 --- a/dotfiles/emacs.d +++ b/dotfiles/emacs.d @@ -1 +1 @@ -Subproject commit aa9d29fd344f3c647c6990fd05477c3bc930e16e +Subproject commit 8c5f224f709b5680145616e3acaca86328b22bb2 diff --git a/resources/npm.sh b/resources/npm.sh index 78f33e35..2447c8e0 100644 --- a/resources/npm.sh +++ b/resources/npm.sh @@ -1 +1,2 @@ -npm install http-server +npm -g install http-server +npm -g install js-beautify diff --git a/tasks/linux.py b/tasks/linux.py index e15e6361..6fa7e8cd 100644 --- a/tasks/linux.py +++ b/tasks/linux.py @@ -10,7 +10,7 @@ def all(ctx): linux_pacakges = ('zsh', 'tmux', 'emacs24-nox', 'nmap', 'scala', 'default-jdk', 'default-jre', 'python-virtualenv', 'htop', 'netcat', 'wget', 'zlib1g-dev', 'libxml2-dev', 'libxslt1-dev', 'python-dev', - 'libncurses5-dev') + 'libncurses5-dev', 'npm') @ctask def apt_get(ctx): install_command = 'sudo apt-get -y install'