Sha256: a8960dcafb5084bee1a476e953539ac5ad6962bcbd9293e5fc4fa5e3b0da88e5

Contents?: true

Size: 997 Bytes

Versions: 2

Compression:

Stored size: 997 Bytes

Contents

# frozen_string_literal: true

##
# Usage example:
#
#   ConvenientService::Examples::Dry::Gemfile::Services::AssertNpmPackageAvailable.result(name: "lodash")
#
module ConvenientService
  module Examples
    module Dry
      module Gemfile
        module Services
          class AssertNpmPackageAvailable
            include DryService::Config

            option :name

            contract do
              schema do
                required(:name).value(:string)
              end
            end

            step Services::AssertNodeAvailable

            ##
            # NOTE: `> /dev/null 2>&1` is used to hide output.
            # https://unix.stackexchange.com/a/119650/394253
            #
            # NOTE: For `npm list` and its options docs, see
            # https://docs.npmjs.com/cli/v7/commands/npm-ls
            #
            step Services::RunShell, in: {command: -> { "npm list #{name} --depth=0 > /dev/null 2>&1" }}
          end
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
convenient_service-0.2.0 lib/convenient_service/examples/dry/gemfile/services/assert_npm_package_available.rb
convenient_service-0.1.0 lib/convenient_service/examples/dry/gemfile/services/assert_npm_package_available.rb