Update to version 0.2.0.

This commit is contained in:
David Anson 2016-07-05 15:03:40 -07:00
parent 0a6e3e0ae8
commit 3db84df660
3 changed files with 4 additions and 3 deletions

View file

@ -476,6 +476,7 @@ var results = window.markdownlint.sync(options).toString();
* 0.0.8 - Support disabling/enabling rules inline, improve code fence, dependencies.
* 0.1.0 - Add aliases, exceptions for MD033, exclusions for MD013, dependencies.
* 0.1.1 - Fix bug handling HTML in tables, reference markdownlint-cli.
* 0.2.0 - Add MD042/MD043, enhance MD002/MD003/MD004/MD007/MD011/MD025/MD041, dependencies.
[npm-image]: https://img.shields.io/npm/v/markdownlint.svg
[npm-url]: https://www.npmjs.com/package/markdownlint

View file

@ -1,5 +1,5 @@
CACHE MANIFEST
# 2016-02-13
# 2016-07-05
default.css
default.htm
default.js

View file

@ -1,6 +1,6 @@
{
"name": "markdownlint",
"version": "0.1.1",
"version": "0.2.0",
"description": "A Node.js style checker and lint tool for Markdown/CommonMark files.",
"main": "lib/markdownlint.js",
"author": "David Anson (http://dlaa.me/)",
@ -17,7 +17,7 @@
"debug": "node debug node_modules/nodeunit/bin/nodeunit",
"lint": "eslint lib test && eslint --env browser --global markdownit --global markdownlint --rule \"no-unused-vars: 0, no-extend-native: 0, max-statements: 0, no-console: 0\" demo && eslint --rule \"no-console: 0, no-shadow: 0\" example",
"build-demo": "cpy node_modules/markdown-it/dist/markdown-it.min.js demo && cd demo && rimraf markdownlint-browser.* && cpy file-header.js . --rename=markdownlint-browser.js && browserify browser-polyfills.js ../lib/markdownlint.js --standalone markdownlint >> markdownlint-browser.js && uglifyjs markdownlint-browser.js --compress --mangle --comments --output markdownlint-browser.min.js",
"build-example": "npm install grunt grunt-cli gulp through2",
"build-example": "npm install --ignore-scripts grunt grunt-cli gulp through2",
"example": "cd example && node standalone.js && grunt markdownlint --force && gulp markdownlint"
},
"dependencies": {