Skip to content

Commit

Permalink
Fix installation if NPM proxy cache is used
Browse files Browse the repository at this point in the history
Depend on comlexity-report-ext with nummeric version. Dependencies on branches
fail, when npm_lazy is used.
  • Loading branch information
prantlf committed May 3, 2018
1 parent cfc0d58 commit bf4879d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,7 @@ your code using Grunt.

## Release History

* 2018-05-03 [v1.0.1] Fixed installation if NPM proxy cache is used
* 2018-04-27 [v1.0.0] Dropped support of Node.js 4
* 2018-01-29 [v0.0.1] Initial release

Expand All @@ -252,3 +253,4 @@ Licensed under the MIT license.
[Getting Gtarted]: https://github.com/gruntjs/grunt/wiki/Getting-started
[v0.0.1]: https://github.com/prantlf/grunt-escomplex-report/releases/tag/v0.0.1
[v1.0.0]: https://github.com/prantlf/grunt-escomplex-report/releases/tag/v1.0.0
[v1.0.1]: https://github.com/prantlf/grunt-escomplex-report/releases/tag/v1.0.1
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"travis-deploy-once": "travis-deploy-once"
},
"dependencies": {
"complexity-report": "prantlf/complexity-report.git#combined"
"complexity-report-ext": "^0.0.1"
},
"devDependencies": {
"grunt": "^1.0.2",
Expand All @@ -44,8 +44,8 @@
"grunt-istanbul": "^0.8.0",
"grunt-standard": "^3.1.0",
"nsp": "^3.2.1",
"travis-deploy-once": "^4.4.1",
"semantic-release": "^15.1.7"
"travis-deploy-once": "^5.0.0",
"semantic-release": "^15.2.0"
},
"peerDependencies": {
"grunt": ">=0.4.5"
Expand Down
4 changes: 2 additions & 2 deletions tasks/grunt-complexity-report.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict'

const reporter = require('complexity-report')
const printer = require('complexity-report/src/formats/colorful')
const reporter = require('complexity-report-ext')
const printer = require('complexity-report-ext/src/formats/colorful')
const mkdirp = require('mkdirp')
const path = require('path')

Expand Down

0 comments on commit bf4879d

Please sign in to comment.