From 200f16eac08ac3ec162ce47315fe88d7317bf421 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christer=20War=C3=A9n?= Date: Fri, 10 Sep 2021 01:21:14 +0300 Subject: [PATCH] Disable Node warnings in package.json --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 8a808d5..d394755 100644 --- a/package.json +++ b/package.json @@ -5,8 +5,8 @@ "main": "index.js", "scripts": { "build": "rimraf ./build && tsc", - "start": "node build/index.js", - "start:dev": "npm run build && node build/index.js" + "start": "node --no-warnings build/index.js", + "start:dev": "npm run build && node --no-warnings build/index.js" }, "repository": { "type": "git",