From 724ded359c02de17664431c7da598f1c42157961 Mon Sep 17 00:00:00 2001 From: Doug Webb Date: Tue, 3 Aug 2021 10:24:01 +0200 Subject: [PATCH] suppress warnings with RUBYOPT prefix in package.json commands (#314) --- package.json | 4 ++-- 1 file 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" },