Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Greiling <mike@pixelcog.com>2017-02-08 01:57:43 +0300
committerMike Greiling <mike@pixelcog.com>2017-02-13 21:23:03 +0300
commit8beb5998a8356feeb4ce75f7d749407bdd9034bc (patch)
tree3625eaaba4a17eb92c917235efa0a12a64fdf65f /lib/tasks/eslint.rake
parent469bc859ce92b2ef8cb5be56376504e44e239197 (diff)
replace npm run calls with yarn
Diffstat (limited to 'lib/tasks/eslint.rake')
-rw-r--r--lib/tasks/eslint.rake2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tasks/eslint.rake b/lib/tasks/eslint.rake
index d43cbad1909..2514b050695 100644
--- a/lib/tasks/eslint.rake
+++ b/lib/tasks/eslint.rake
@@ -1,7 +1,7 @@
unless Rails.env.production?
desc "GitLab | Run ESLint"
task :eslint do
- system("npm", "run", "eslint")
+ system("yarn", "run", "eslint")
end
end