module VagrantPlugins::Cachier::Cap::Linux::NpmCacheDir

Public Class Methods

npm_cache_dir(machine) click to toggle source
# File lib/vagrant-cachier/cap/linux/npm_cache_dir.rb, line 6
def self.npm_cache_dir(machine)
  npm_cache_dir = nil
  machine.communicate.tap do |comm|
    return unless comm.test('which npm')
    comm.execute 'npm config get cache' do |buffer, output|
      npm_cache_dir = output.chomp if buffer == :stdout
    end
  end
  return npm_cache_dir
end