Comparing version 1.1.2 to 1.1.3
@@ -6,2 +6,7 @@ # Change Log | ||
<a name="current-release"></a> | ||
# Version 1.1.3 (Sun, 21 May 2017 12:34:06 GMT) | ||
* [4ff79e3](https://github.com/nknapp/thought/commit/4ff79e3) Fix removal of q - Nils Knappmeier | ||
* [61204e1](https://github.com/nknapp/thought/commit/61204e1) fix(package): update customize-write-files to version 2.0.0 - greenkeeper[bot] | ||
# Version 1.1.2 (Sun, 09 Apr 2017 08:57:35 GMT) | ||
@@ -8,0 +13,0 @@ |
@@ -12,4 +12,4 @@ /*! | ||
return exec('npm', ['--version']) | ||
.spread(function (stdout, stderr) { | ||
if (semver.lt(stdout.trim(), '2.13.0')) { | ||
.then(function (stdio) { | ||
if (semver.lt(stdio[0], '2.13.0')) { | ||
throw new Error('npm<2.13.0 will not execute the `version`-script in your package.json.\n' + | ||
@@ -19,5 +19,5 @@ 'Please upgrade to at least 2.13.0.') | ||
// eslint-disable-next-line no-console | ||
console.log('npm@' + stdout.trim() + ': OK') | ||
console.log('npm@' + stdio.trim() + ': OK') | ||
} | ||
}) | ||
} |
{ | ||
"name": "thought", | ||
"version": "1.1.2", | ||
"version": "1.1.3", | ||
"description": "A customizable documentation generator for github projects", | ||
@@ -47,3 +47,3 @@ "repository": { | ||
"customize-engine-handlebars": "^2.0.0", | ||
"customize-write-files": "^1.1.0", | ||
"customize-write-files": "^2.0.0", | ||
"debug": "^2.6.3", | ||
@@ -50,0 +50,0 @@ "deep-aplus": "^1.0.4", |
57380
+ Addedcustomize-write-files@2.0.1(transitive)
+ Addedmkdirp@0.5.6(transitive)
+ Addedpify@2.3.0(transitive)
+ Addedstream-equal@1.1.1(transitive)
- Removedcustomize-write-files@1.1.1(transitive)
- Removedstream-equal@0.1.13(transitive)
Updatedcustomize-write-files@^2.0.0