summaryrefslogtreecommitdiff
path: root/lib/license/finder/ext/yarn.rb
blob: cc2c029d13876c42cb16246b4b2b5b053a9b6d4e (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module LicenseFinder
  class Yarn
    def prepare_command
      'yarn install --ignore-engines --ignore-scripts'
    end
  end
end