Comparing version 3.0.0 to 3.0.1
@@ -6,3 +6,3 @@ /** | ||
* @module remark | ||
* @version 3.0.0 | ||
* @version 3.0.1 | ||
* @fileoverview Markdown processor powered by plugins. | ||
@@ -9,0 +9,0 @@ */ |
@@ -6,3 +6,3 @@ /** | ||
* @module remark:cli:cli | ||
* @version 3.0.0 | ||
* @version 3.0.1 | ||
* @fileoverview Bridge between CLI options and node. | ||
@@ -9,0 +9,0 @@ */ |
@@ -6,3 +6,3 @@ /** | ||
* @module remark:cli:configuration | ||
* @version 3.0.0 | ||
* @version 3.0.1 | ||
* @fileoverview Find remark rc files. | ||
@@ -9,0 +9,0 @@ */ |
@@ -6,3 +6,3 @@ /** | ||
* @module remark:cli:file-pipeline:configure | ||
* @version 3.0.0 | ||
* @version 3.0.1 | ||
* @fileoverview Configure a file. | ||
@@ -9,0 +9,0 @@ */ |
@@ -6,3 +6,3 @@ /** | ||
* @module remark:cli:file-pipeline:copy | ||
* @version 3.0.0 | ||
* @version 3.0.1 | ||
* @fileoverview Move a file. | ||
@@ -9,0 +9,0 @@ */ |
@@ -6,3 +6,3 @@ /** | ||
* @module remark:cli:file-pipeline:file-system | ||
* @version 3.0.0 | ||
* @version 3.0.1 | ||
* @fileoverview Write a file to the file system. | ||
@@ -9,0 +9,0 @@ */ |
@@ -6,3 +6,3 @@ /** | ||
* @module remark:cli:file-pipeline | ||
* @version 3.0.0 | ||
* @version 3.0.1 | ||
* @fileoverview Process a file. | ||
@@ -9,0 +9,0 @@ */ |
@@ -6,3 +6,3 @@ /** | ||
* @module remark:cli:file-pipeline:parse | ||
* @version 3.0.0 | ||
* @version 3.0.1 | ||
* @fileoverview Parse a file into an AST. | ||
@@ -9,0 +9,0 @@ */ |
@@ -6,3 +6,3 @@ /** | ||
* @module remark:cli:file-pipeline:queue | ||
* @version 3.0.0 | ||
* @version 3.0.1 | ||
* @fileoverview Queue all files which came this far. | ||
@@ -9,0 +9,0 @@ */ |
@@ -6,3 +6,3 @@ /** | ||
* @module remark:cli:file-pipeline:read | ||
* @version 3.0.0 | ||
* @version 3.0.1 | ||
* @fileoverview Read a file if not already filled. | ||
@@ -9,0 +9,0 @@ */ |
@@ -6,3 +6,3 @@ /** | ||
* @module remark:cli:file-pipeline:stdout | ||
* @version 3.0.0 | ||
* @version 3.0.1 | ||
* @fileoverview Write a file to stdout(4). | ||
@@ -9,0 +9,0 @@ */ |
@@ -6,3 +6,3 @@ /** | ||
* @module remark:cli:file-pipeline:stringify | ||
* @version 3.0.0 | ||
* @version 3.0.1 | ||
* @fileoverview Compile an AST into a file. | ||
@@ -9,0 +9,0 @@ */ |
@@ -6,3 +6,3 @@ /** | ||
* @module remark:cli:file-pipeline:transform | ||
* @version 3.0.0 | ||
* @version 3.0.1 | ||
* @fileoverview Transform an AST associated with a file. | ||
@@ -9,0 +9,0 @@ */ |
@@ -6,3 +6,3 @@ /** | ||
* @module remark:cli:file-set-pipeline:configure | ||
* @version 3.0.0 | ||
* @version 3.0.1 | ||
* @fileoverview Configure a collection of files. | ||
@@ -9,0 +9,0 @@ */ |
@@ -6,3 +6,3 @@ /** | ||
* @module remark:cli:file-set-pipeline:traverse | ||
* @version 3.0.0 | ||
* @version 3.0.1 | ||
* @fileoverview Find files from the file-system. | ||
@@ -9,0 +9,0 @@ */ |
@@ -6,3 +6,3 @@ /** | ||
* @module remark:cli:file-set-pipeline | ||
* @version 3.0.0 | ||
* @version 3.0.1 | ||
* @fileoverview Process a collection of files. | ||
@@ -9,0 +9,0 @@ */ |
@@ -6,3 +6,3 @@ /** | ||
* @module remark:cli:log | ||
* @version 3.0.0 | ||
* @version 3.0.1 | ||
* @fileoverview Log a file context on successful completion. | ||
@@ -9,0 +9,0 @@ */ |
@@ -6,3 +6,3 @@ /** | ||
* @module remark:cli:file-set-pipeline:stdin | ||
* @version 3.0.0 | ||
* @version 3.0.1 | ||
* @fileoverview Read from stdin. | ||
@@ -9,0 +9,0 @@ */ |
@@ -6,3 +6,3 @@ /** | ||
* @module remark:cli:file-set-pipeline:transform | ||
* @version 3.0.0 | ||
* @version 3.0.1 | ||
* @fileoverview Transform all files. | ||
@@ -9,0 +9,0 @@ */ |
@@ -6,3 +6,3 @@ /** | ||
* @module remark:cli:file-set | ||
* @version 3.0.0 | ||
* @version 3.0.1 | ||
* @fileoverview Collection of virtual files. | ||
@@ -9,0 +9,0 @@ */ |
@@ -6,3 +6,3 @@ /** | ||
* @module remark:cli:traverser | ||
* @version 3.0.0 | ||
* @version 3.0.1 | ||
* @fileoverview Get applicable input files from | ||
@@ -180,3 +180,3 @@ * the file system to be processed by remark, respecting | ||
return false; | ||
return given.indexOf(filePath) !== -1 && stat(filePath).isFile(); | ||
}, filePaths, function (err, files) { | ||
@@ -183,0 +183,0 @@ callback(err, failed.concat(files).map(function (file) { |
@@ -6,3 +6,3 @@ /** | ||
* @module remark:cli:ignore | ||
* @version 3.0.0 | ||
* @version 3.0.1 | ||
* @fileoverview Find remark ignore files. | ||
@@ -9,0 +9,0 @@ */ |
@@ -6,3 +6,3 @@ /** | ||
* @module remark:cli | ||
* @version 3.0.0 | ||
* @version 3.0.1 | ||
* @fileoverview CLI Engine. | ||
@@ -9,0 +9,0 @@ */ |
@@ -6,3 +6,3 @@ /** | ||
* @module remark:cli:spinner | ||
* @version 3.0.0 | ||
* @version 3.0.1 | ||
* @fileoverview A spinner for stdout(4). | ||
@@ -9,0 +9,0 @@ */ |
@@ -5,3 +5,3 @@ /** | ||
* @license MIT | ||
* @version 3.0.0 | ||
* @version 3.0.1 | ||
* @module remark:cli:watch-output-cache | ||
@@ -8,0 +8,0 @@ * @fileoverview Cache changed files which are also watched. |
@@ -6,3 +6,3 @@ /** | ||
* @module remark:defaults | ||
* @version 3.0.0 | ||
* @version 3.0.1 | ||
* @fileoverview Default values for parse and | ||
@@ -9,0 +9,0 @@ * stringification settings. |
@@ -6,3 +6,3 @@ /** | ||
* @module remark:stringify | ||
* @version 3.0.0 | ||
* @version 3.0.1 | ||
* @fileoverview Compile an abstract syntax tree into | ||
@@ -9,0 +9,0 @@ * a markdown document. |
@@ -6,3 +6,3 @@ /** | ||
* @module remark:utilities | ||
* @version 3.0.0 | ||
* @version 3.0.1 | ||
* @fileoverview Collection of tiny helpers useful for | ||
@@ -9,0 +9,0 @@ * both parsing and compiling markdown. |
{ | ||
"name": "remark", | ||
"version": "3.0.0", | ||
"version": "3.0.1", | ||
"description": "Markdown processor powered by plugins", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -8,3 +8,3 @@ # ![remark](https://cdn.rawgit.com/wooorm/remark/master/logo.svg) | ||
> **remark** recently underwent quite some changes. | ||
> For one, it’s named changed from **mdast**. This means all the plug-ins | ||
> For one, it’s name changed from **mdast**. This means all the plug-ins | ||
> in the ecosystem need to change names too, which may result in some turbulence | ||
@@ -11,0 +11,0 @@ > the coming weeks (but most of the dust has already settled). |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
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
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
420987
0