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."

This commit is contained in:
Ruby Boyarski
2016-05-02 11:48:29 +03:00
parent f6e5da5edd
commit 801e379538
@@ -5,13 +5,14 @@
"jquery": "github:components/jquery", "jquery": "github:components/jquery",
"css": "github:systemjs/plugin-css" "css": "github:systemjs/plugin-css"
}, },
"shim": { "shim": {
"dist/js/materialize": { "dist/js/materialize": {
"deps": [ "deps": [
"jquery", "jquery",
"../css/materialize.css!" "../css/materialize.css!"
], ],
"exports": "$" "exports": "$"
}
} }
},
"jspmNodeConversion": false
} }