Sha256: 182ba9e27a6907f2637be709feaceabc0e8930ee4e86bb0c7f95beee03668cc2
Contents?: true
Size: 245 Bytes
Versions: 15
Compression:
Stored size: 245 Bytes
Contents
desc 'yarn-install', 'Runs yarn install if required', :hide => true def yarn_install if File.exists?('package.json') and !system('yarn check --integrity > /dev/null 2>&1') announce 'Yarn install' Util.system! 'yarn install' end end
Version data entries
15 entries across 15 versions & 1 rubygems