From 505d5b3cc1dee8b26f5eb282e9dcf88ea4cfd355 Mon Sep 17 00:00:00 2001 From: "greenkeeper[bot]" Date: Mon, 10 Apr 2017 19:35:34 +0000 Subject: [PATCH 1/3] chore(package): update dependencies https://greenkeeper.io/ --- package.json | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/package.json b/package.json index c20fc3320..0946c4a4a 100644 --- a/package.json +++ b/package.json @@ -7,10 +7,10 @@ "documentation": "./bin/documentation.js" }, "dependencies": { - "ansi-html": "^0.0.6", + "ansi-html": "^0.0.7", "babel-core": "^6.17.0", - "babel-generator": "6.19.0", - "babel-plugin-system-import-transformer": "2.4.0", + "babel-generator": "6.24.1", + "babel-plugin-system-import-transformer": "3.1.0", "babel-plugin-transform-decorators-legacy": "^1.3.4", "babel-preset-es2015": "^6.16.0", "babel-preset-react": "^6.16.0", @@ -38,13 +38,13 @@ "micromatch": "^2.1.6", "mime": "^1.3.4", "module-deps-sortable": "4.0.6", - "parse-filepath": "^0.6.3", + "parse-filepath": "^1.0.1", "pify": "^2.3.0", "read-pkg-up": "^2.0.0", - "remark": "^6.0.1", - "remark-html": "5.0.1", - "remark-toc": "^3.0.0", - "remote-origin-url": "0.4.0", + "remark": "^7.0.0", + "remark-html": "6.0.0", + "remark-toc": "^4.0.0", + "remote-origin-url": "0.5.2", "resolve": "^1.1.6", "shelljs": "^0.7.5", "stream-array": "^1.1.0", @@ -57,23 +57,23 @@ "vfile-sort": "^2.0.0", "vinyl": "^2.0.0", "vinyl-fs": "^2.3.1", - "yargs": "^6.0.0" + "yargs": "^7.0.2" }, "devDependencies": { "are-we-flow-yet": "^1.0.0", "chdir": "0.0.0", - "cz-conventional-changelog": "1.2.0", + "cz-conventional-changelog": "2.0.0", "documentation-schema": "0.0.1", - "flow-bin": "^0.37.4", - "fs-extra": "^1.0.0", + "flow-bin": "^0.43.1", + "fs-extra": "^2.1.2", "husky": "^0.13.3", "json-schema": "0.2.3", "lint-staged": "^3.4.0", - "mock-fs": "^3.5.0", + "mock-fs": "^4.2.0", "prettier": "^0.22.0", - "standard-changelog": "0.0.1", - "tap": "^8.0.0", - "tmp": "^0.0.29" + "standard-changelog": "1.0.1", + "tap": "^10.3.2", + "tmp": "^0.0.31" }, "keywords": [ "documentation", From 0077b8a975b1735a19cd3de54845ebfccd104f0e Mon Sep 17 00:00:00 2001 From: "greenkeeper[bot]" Date: Mon, 10 Apr 2017 19:35:37 +0000 Subject: [PATCH 2/3] docs(readme): add Greenkeeper badge https://greenkeeper.io/ --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 9ae967c85..bf78e7e3c 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # documentation +[![Greenkeeper badge](https://badges.greenkeeper.io/documentationjs/documentation.svg)](https://greenkeeper.io/) + [![Circle CI](https://circleci.com/gh/documentationjs/documentation/tree/master.svg?style=shield)](https://circleci.com/gh/documentationjs/documentation/tree/master) [![npm version](https://badge.fury.io/js/documentation.svg)](http://badge.fury.io/js/documentation) [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/documentationjs/documentation?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) From ace5008778687efb95ff3462d3268592f281a2d9 Mon Sep 17 00:00:00 2001 From: Tom Macwright Date: Mon, 10 Apr 2017 16:14:24 -0400 Subject: [PATCH 3/3] chore(greenkeeper): Exclude remote-origin-url and yargs from Greenkeeper for now --- lib/commands/readme.js | 2 +- lib/inline_tokenizer.js | 6 +++--- package.json | 10 ++++++++-- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/lib/commands/readme.js b/lib/commands/readme.js index 9573c0e24..27202da4e 100644 --- a/lib/commands/readme.js +++ b/lib/commands/readme.js @@ -114,7 +114,7 @@ module.exports.handler = function readme(argv /*: Object*/) { }; // wrap the inject utility as an remark plugin -function plugin(remark, options) { +function plugin(options) { return function transform(targetAst, file, next) { if (!inject(options.section, targetAst, options.toInject)) { return next(new Error(`Heading ${options.section} not found.`)); diff --git a/lib/inline_tokenizer.js b/lib/inline_tokenizer.js index 062ce30f9..1c5eb907e 100644 --- a/lib/inline_tokenizer.js +++ b/lib/inline_tokenizer.js @@ -56,11 +56,11 @@ var tokenizeTutorial = makeTokenizer( * This does not handle the `[text]({@link url})` and `[text]({@tutorial url})` forms of these tags. * That's a JSDoc misfeature; just use regular markdown syntax instead: `[text](url)`. * - * @param {Object} processor - remark instance + * @param {Object} options - for the plugin * @returns {undefined} */ -module.exports = function(processor /*: Object*/) { - var proto = processor.Parser.prototype; +module.exports = function(options /*: Object*/) { + var proto = this.Parser.prototype; proto.inlineTokenizers.tokenizeLink = tokenizeLink; proto.inlineTokenizers.tokenizeTutorial = tokenizeTutorial; var methods = proto.inlineMethods; diff --git a/package.json b/package.json index 0946c4a4a..d21136ce8 100644 --- a/package.json +++ b/package.json @@ -44,7 +44,7 @@ "remark": "^7.0.0", "remark-html": "6.0.0", "remark-toc": "^4.0.0", - "remote-origin-url": "0.5.2", + "remote-origin-url": "0.4.0", "resolve": "^1.1.6", "shelljs": "^0.7.5", "stream-array": "^1.1.0", @@ -57,7 +57,7 @@ "vfile-sort": "^2.0.0", "vinyl": "^2.0.0", "vinyl-fs": "^2.3.1", - "yargs": "^7.0.2" + "yargs": "^6.0.0" }, "devDependencies": { "are-we-flow-yet": "^1.0.0", @@ -110,5 +110,11 @@ "*.js": [ "prettier --write --single-quote" ] + }, + "greenkeeper": { + "ignore": [ + "remote-origin-url", + "yargs" + ] } } pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy