From 73a531236ef77c84255c52e88c040d1ec9fa4cce Mon Sep 17 00:00:00 2001 From: Manol Donev Date: Thu, 21 Jun 2018 15:26:07 +0300 Subject: [PATCH] fix: schema-utils peer dep warning for webpack 2/3 When tns-creating an app that depends on latest nativescript-dev-webpack you can see the following in the output: ``` npm WARN schema-utils@0.4.3 requires a peer of webpack@^2.0.0 || ^3.0.0 but none is installed. You must install peer dependencies yourself. ``` Based on https://github.com/webpack-contrib/url-loader/issues/122 It seems schema-utils@0.4.5 has the webpack 4 dependency fix. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 7d31731a..b94ecab3 100644 --- a/package.json +++ b/package.json @@ -71,7 +71,7 @@ "nativescript-hook": "0.2.4", "proxy-lib": "0.4.0", "request": "2.83.0", - "schema-utils": "0.4.3", + "schema-utils": "0.4.5", "semver": "5.4.1", "shelljs": "0.6.0", "tapable": "1.0.0",