Class: Guard::Npm

Inherits:
Guard
  • Object
show all
Defined in:
lib/guard/npm.rb,
lib/guard/npm/notifier.rb

Defined Under Namespace

Classes: Notifier

Instance Method Summary collapse

Instance Method Details

#reloadObject



13
14
15
# File 'lib/guard/npm.rb', line 13

def reload
  install_package
end

#run_allObject



17
18
19
# File 'lib/guard/npm.rb', line 17

def run_all
  install_package
end

#run_on_additions(paths = []) ⇒ Object



21
22
23
# File 'lib/guard/npm.rb', line 21

def run_on_additions(paths = [])
  install_package
end

#run_on_modifications(paths = []) ⇒ Object



25
26
27
# File 'lib/guard/npm.rb', line 25

def run_on_modifications(paths = [])
  install_package
end

#startObject



9
10
11
# File 'lib/guard/npm.rb', line 9

def start
  install_package
end