5 # Copyright:: 2013, OpenStreetMap Foundation
 
   7 # Licensed under the Apache License, Version 2.0 (the "License");
 
   8 # you may not use this file except in compliance with the License.
 
   9 # You may obtain a copy of the License at
 
  11 # https://www.apache.org/licenses/LICENSE-2.0
 
  13 # Unless required by applicable law or agreed to in writing, software
 
  14 # distributed under the License is distributed on an "AS IS" BASIS,
 
  15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
  16 # See the License for the specific language governing permissions and
 
  17 # limitations under the License.
 
  22 default_action :install
 
  24 property :package, :kind_of => String, :name_property => true
 
  25 property :version, :kind_of => String
 
  28   qualified_name = if new_resource.version
 
  29                      "#{new_resource.package}@#{new_resource.version}"
 
  34   if current_version.nil?
 
  35     converge_by "install #{qualified_name}" do
 
  36       shell_out!("npm install --global #{qualified_name}")
 
  38   elsif new_resource.version &&
 
  39         new_resource.version != current_version
 
  40     converge_by "update #{qualified_name}" do
 
  41       shell_out!("npm install --global #{qualified_name}")
 
  47   unless current_version.nil?
 
  48     converge_by "update #{new_resource.package}" do
 
  49       shell_out!("npm update --global #{new_resource.package}")
 
  55   unless current_version.nil?
 
  56     converge_by "remove #{new_resource.package}" do
 
  57       shell_out!("npm remove --global #{new_resource.package}")
 
  64     @current_version ||= JSON.parse(shell_out("npm list --global --json").stdout)
 
  65                              .dig("dependencies", new_resource.package, "version")