Reputation: 1
below versions of node, npm and ember-cli i am using...
ember-cli: 2.18.0 node: 8.9.4 os: win32 ia32 npm : 5.6.0
please guide me how to address this kind of issues
Upvotes: 0
Views: 244
Reputation: 19
Actually this does not have to do with minimatch warning. What npm is telling you, is that it cannot find that module (in your case ember-cli-tutorial-style). Make sure that, this npm package actually exists!
Upvotes: 0
Reputation: 12872
In error, warning its saying to update minimatch version to 3.0.2 for that you can run the below command,
npm install --save-dev [email protected]
After that you can try running ember install ember-cli-tutorial-style
.
If this still shows error, you can directly do,
npm install --save-dev ember-cli-tutorial-style
Upvotes: 1