From 801e37953830bb38536dbca267174c4771fc0c8a Mon Sep 17 00:00:00 2001 From: Ruby Boyarski Date: Mon, 2 May 2016 11:48:29 +0300 Subject: [PATCH] Added a flag to avoid the following error when installing npm:materialize-css : "Error on processPackageConfig. Package.json dependency jquery set to github:components/jquery, which is not a valid dependency format for npm. It's advisable to publish jspm-style packages to GitHub or another registry so conventions are clear." --- .../npm/materialize-css@0.97.5.json | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/package-overrides/npm/materialize-css@0.97.5.json b/package-overrides/npm/materialize-css@0.97.5.json index 9b28424..bcdf11d 100644 --- a/package-overrides/npm/materialize-css@0.97.5.json +++ b/package-overrides/npm/materialize-css@0.97.5.json @@ -5,13 +5,14 @@ "jquery": "github:components/jquery", "css": "github:systemjs/plugin-css" }, - "shim": { - "dist/js/materialize": { - "deps": [ - "jquery", - "../css/materialize.css!" - ], - "exports": "$" - } + "shim": { + "dist/js/materialize": { + "deps": [ + "jquery", + "../css/materialize.css!" + ], + "exports": "$" } + }, + "jspmNodeConversion": false } \ No newline at end of file