2018-08-03 03:15:25 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-05-17 12:27:30 -04:00
|
|
|
module BlobViewer
|
|
|
|
class YarnLock < DependencyManager
|
|
|
|
include Static
|
|
|
|
|
|
|
|
self.file_types = %i(yarn_lock)
|
|
|
|
|
|
|
|
def manager_name
|
|
|
|
'Yarn'
|
|
|
|
end
|
|
|
|
|
|
|
|
def manager_url
|
|
|
|
'https://yarnpkg.com/'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|