Sha256: 3b99c890f1cf9a3e5bfc515e6ba0a5435e15c77587f8c136b85fbcf22ecc5584
Contents?: true
Size: 366 Bytes
Versions: 20
Compression:
Stored size: 366 Bytes
Contents
# frozen_string_literal: true namespace :yarn do desc "Install npm packages with yarn" task install: :environment do sh "yarn install" end desc "Lint JS/SCSS files using yarn (prettier)" task lint: :install do sh "yarn lint" end desc "Autoformat JS/SCSS files using yarn (prettier)" task format: :install do sh "yarn format" end end
Version data entries
20 entries across 20 versions & 2 rubygems