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

github.com/ForkAwesome/Fork-Awesome.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Webb <DougInAMug@users.noreply.github.com>2021-08-03 11:24:01 +0300
committerGitHub <noreply@github.com>2021-08-03 11:24:01 +0300
commit724ded359c02de17664431c7da598f1c42157961 (patch)
treee685e2697cac52ed5fd5462263eaaa50b3d2f023
parent127f26cc063ea9a681aaff675ca3f0403a9b71a7 (diff)
suppress warnings with RUBYOPT prefix in package.json commands (#314)
-rw-r--r--package.json4
1 files changed, 2 insertions, 2 deletions
diff --git a/package.json b/package.json
index 9720e7afc..0db06ca48 100644
--- a/package.json
+++ b/package.json
@@ -32,8 +32,8 @@
"node": ">=0.10.3"
},
"scripts": {
- "build": "bundle exec jekyll build",
- "dev": "bundle exec jekyll serve -w",
+ "build": "RUBYOPT='-W0' bundle exec jekyll build",
+ "dev": "RUBYOPT='-W0' bundle exec jekyll serve -w",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},