ember-cli-dependency-checker icon indicating copy to clipboard operation
ember-cli-dependency-checker copied to clipboard

Ember CLI addon for checking missing node and bower dependencies before running ember commands

Results 31 ember-cli-dependency-checker issues
Sort by recently updated
recently updated
newest added

I'm not sure if this is new or related to #50, but... My shrinkwrap file includes fsevents with `"optional": true` and so naturally npm doesn't install it on linux where...

**Did you confirm this fix/feature is something that is needed?** Yeah, you suggested it at #75 **Did you write automated tests?** Yeah, I've update the bower tests **Did you add...

My `.bowerrc`: ```json { "directory": "/bower_components" } ``` I _think_ broccoli will find these fine, because it looks in `.bowerrc` for the bower directory. However, this package reports "Missing bower...

people may be having issues with optional deps not being installed, but validated... https://github.com/ember-cli/ember-cli/issues/4965

After having linked a local module for development, and forgetting I had done so, I was left with this unhelpful message: ```text ~/Code/project (develop *)$ ember dependency-lint Invalid Version: *...

As you can specify a node and npm version in the `engines` part of the `package.json`, can this addon be use to warn if an incompatible version is being used?...

I haven't dug in yet, but we should definitely start researching exactly how to leverage `yarn.lock` for dependency validation.

A try catch [here](https://github.com/quaertym/ember-cli-dependency-checker/blob/master/lib/package.js#L21) would allow us to include which package failed. The existing error message is as follows: ``` bash Invalid Version: * TypeError: Invalid Version: * at new...

I'm basically proposing adding a `ember fix-dependencies` command that does essentially the following: - For npm deps installed at the wrong versions: `rimraf('node_modules/');` - For bower deps installed at the...

given: [a shrinkwrap](https://gist.github.com/stefanpenner/61d9ba7ec73184fc6bcd) and ``` symlink node_modules/broccoli-merge-trees @ 1.x node_modules/foo/node_modules/bar which depends on broccoli-merge-trees @ 0.2.x ``` the symlink does not correctly put the dep checker into warn only mode...