Skip to content

Commit

Permalink
suppress warnings with RUBYOPT prefix in package.json commands (#314)
Browse files Browse the repository at this point in the history
  • Loading branch information
DougInAMug authored Aug 3, 2021
1 parent 127f26c commit 724ded3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -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"
},

0 comments on commit 724ded3

Please sign in to comment.