Comparing version 1.1.0 to 1.1.1
@@ -54,8 +54,10 @@ #!/usr/bin/env node | ||
}) | ||
.done(function (filenames) { | ||
debug('done') | ||
/* eslint-disable no-console */ | ||
console.log('The following files were updated: ' + filenames.join(', ')) | ||
/* eslint-enable no-console */ | ||
}) | ||
.then( | ||
(filenames) => { | ||
/* eslint-disable no-console */ | ||
console.log('The following files were updated: ' + filenames.join(', ')) | ||
/* eslint-enable no-console */ | ||
}, | ||
(err) => console.error(err) // eslint-disable-line no-console | ||
) | ||
}) | ||
@@ -70,5 +72,6 @@ | ||
.then(require('../lib/init.js')) | ||
.done(function () { | ||
console.log('OK') // eslint-disable-line no-console | ||
}) | ||
.then( | ||
() => console.log('OK'), // eslint-disable-line no-console | ||
(err) => console.error(err) // eslint-disable-line no-console | ||
) | ||
}) | ||
@@ -81,5 +84,6 @@ | ||
require('../lib/check-engines.js')() | ||
.done(function () { | ||
console.log('OK') // eslint-disable-line no-console | ||
}) | ||
.then( | ||
() => console.log('OK'), // eslint-disable-line no-console | ||
(err) => console.error(err) // eslint-disable-line no-console | ||
) | ||
}) | ||
@@ -92,5 +96,7 @@ | ||
changeDir() | ||
require('../lib/up-to-date.js')().done(function () { | ||
console.log('OK') // eslint-disable-line no-console | ||
}) | ||
require('../lib/up-to-date.js')() | ||
.then( | ||
() => console.log('OK'), // eslint-disable-line no-console | ||
(err) => console.error(err) // eslint-disable-line no-console | ||
) | ||
}) | ||
@@ -97,0 +103,0 @@ |
@@ -6,2 +6,8 @@ # Change Log | ||
<a name="current-release"></a> | ||
# Version 1.1.1 (Sat, 08 Apr 2017 22:17:20 GMT) | ||
* [6c9b552](https://github.com/nknapp/thought/commit/6c9b552) chore(package): update customize to version 2.0.1 - greenkeeper[bot] | ||
* [6a21993](https://github.com/nknapp/thought/commit/6a21993) Remove use of q-specific function "Promise~done()" - Nils Knappmeier | ||
* [8731a6f](https://github.com/nknapp/thought/commit/8731a6f) chore(package): update dependencies - greenkeeper[bot] | ||
# Version 1.1.0 (Fri, 07 Apr 2017 11:39:49 GMT) | ||
@@ -8,0 +14,0 @@ |
{ | ||
"name": "thought", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "A customizable documentation generator for github projects", | ||
@@ -44,10 +44,10 @@ "repository": { | ||
"cheerio": "^0.22.0", | ||
"commander": "^2.8.1", | ||
"customize": "^2.0.0-alpha1", | ||
"commander": "^2.9.0", | ||
"customize": "^2.0.1", | ||
"customize-engine-handlebars": "^2.0.0-alpha.3", | ||
"customize-write-files": "^1.1.0", | ||
"debug": "^2.2.0", | ||
"debug": "^2.6.3", | ||
"find-package": "^1.0.0", | ||
"glob": "^7.0.5", | ||
"handlebars": "^4.0.5", | ||
"glob": "^7.1.1", | ||
"handlebars": "^4.0.6", | ||
"lodash.clonedeep": "^4.5.0", | ||
@@ -60,24 +60,24 @@ "lodash.escaperegexp": "^4.1.2", | ||
"popsicle": "^9.1.0", | ||
"semver": "^5.0.0", | ||
"simple-git": "^1.43.0", | ||
"semver": "^5.3.0", | ||
"simple-git": "^1.70.0", | ||
"trace-and-clarify-if-possible": "^1.0.0" | ||
}, | ||
"devDependencies": { | ||
"chai": "^3.2.0", | ||
"chai": "^3.5.0", | ||
"chai-as-promised": "^6.0.0", | ||
"dirty-chai": "^1.2.2", | ||
"eslint": "^3.17.1", | ||
"eslint-config-standard": "^7.0.1", | ||
"eslint": "^3.19.0", | ||
"eslint-config-standard": "^10.2.0", | ||
"eslint-plugin-import": "^2.2.0", | ||
"eslint-plugin-mocha": "^4.8.0", | ||
"eslint-plugin-node": "^4.2.1", | ||
"eslint-plugin-mocha": "^4.9.0", | ||
"eslint-plugin-node": "^4.2.2", | ||
"eslint-plugin-promise": "^3.5.0", | ||
"eslint-plugin-standard": "^2.1.1", | ||
"husky": "^0.13.2", | ||
"eslint-plugin-standard": "^3.0.1", | ||
"husky": "^0.13.3", | ||
"istanbul": "^0.4.5", | ||
"mocha": "^3.2.0", | ||
"nock": "^9.0.9", | ||
"recursive-copy": "^2.0.5", | ||
"nock": "^9.0.11", | ||
"recursive-copy": "^2.0.6", | ||
"thought-plugin-jsdoc": "^1.0.0", | ||
"thoughtful-release": "^0.3.0" | ||
"thoughtful-release": "^0.3.1" | ||
}, | ||
@@ -84,0 +84,0 @@ "standard": { |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
56872
961
2
Updatedcommander@^2.9.0
Updatedcustomize@^2.0.1
Updateddebug@^2.6.3
Updatedglob@^7.1.1
Updatedhandlebars@^4.0.6
Updatedsemver@^5.3.0
Updatedsimple-git@^1.70.0