New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

thought

Package Overview
Dependencies
Maintainers
1
Versions
48
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

thought - npm Package Compare versions

Comparing version 1.1.2 to 1.1.3

5

CHANGELOG.md

@@ -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 @@

6

lib/check-engines.js

@@ -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",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc