Trinath rok
Trinath rok

Reputation: 1

I am getting errors while installing ember add on ember-cli-tutorial-style,

enter image description here

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

Answers (2)

Vigan Vula
Vigan Vula

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

Ember Freak
Ember Freak

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

Related Questions