suppress warnings with RUBYOPT prefix in package.json commands

This commit is contained in:
Doug 2021-08-01 16:55:48 +02:00
parent 127f26cc06
commit cc093ead4c

View file

@ -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"
},