suppress warnings with RUBYOPT prefix in package.json commands (#314)

This commit is contained in:
Doug Webb 2021-08-03 10:24:01 +02:00 committed by GitHub
parent 127f26cc06
commit 724ded359c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -32,8 +32,8 @@
"node": ">=0.10.3" "node": ">=0.10.3"
}, },
"scripts": { "scripts": {
"build": "bundle exec jekyll build", "build": "RUBYOPT='-W0' bundle exec jekyll build",
"dev": "bundle exec jekyll serve -w", "dev": "RUBYOPT='-W0' bundle exec jekyll serve -w",
"contributors:add": "all-contributors add", "contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate" "contributors:generate": "all-contributors generate"
}, },