mdast-range
Advanced tools
Comparing version 0.4.1 to 0.4.2
@@ -8,2 +8,9 @@ --- | ||
0.4.2 / 2015-06-20 | ||
================== | ||
* Fix incorrect results on first line ([a0bf3e5](https://github.com/wooorm/mdast-range/commit/a0bf3e5)) | ||
* Update eslint ([efd9684](https://github.com/wooorm/mdast-range/commit/efd9684)) | ||
* Update mdast ([e7b9f43](https://github.com/wooorm/mdast-range/commit/e7b9f43)) | ||
0.4.1 / 2015-06-14 | ||
@@ -10,0 +17,0 @@ ================== |
@@ -114,3 +114,3 @@ 'use strict'; | ||
'line': index + 1, | ||
'column': (offset - offsets[index - 1] || 0) + 1 | ||
'column': (offset - (offsets[index - 1] || 0)) + 1 | ||
}; | ||
@@ -117,0 +117,0 @@ } |
{ | ||
"name": "mdast-range", | ||
"version": "0.4.1", | ||
"version": "0.4.2", | ||
"description": "Range information to mdast", | ||
@@ -23,7 +23,7 @@ "license": "MIT", | ||
"peerDependencies": { | ||
"mdast": ">=0.22.0" | ||
"mdast": ">=0.23.0" | ||
}, | ||
"devDependencies": { | ||
"browserify": "^10.0.0", | ||
"eslint": "^0.22.0", | ||
"eslint": "^0.23.0", | ||
"esmangle": "^1.0.0", | ||
@@ -33,3 +33,3 @@ "istanbul": "^0.3.0", | ||
"jscs-jsdoc": "^1.0.0", | ||
"mdast": "^0.22.0", | ||
"mdast": "^0.23.0", | ||
"mdast-github": "^0.3.0", | ||
@@ -54,3 +54,3 @@ "mdast-lint": "^0.2.0", | ||
"postbundle": "esmangle mdast-range.js > mdast-range.min.js", | ||
"build-md": "mdast . --output", | ||
"build-md": "mdast . --output --quiet", | ||
"build": "npm run bundle && npm run build-md", | ||
@@ -57,0 +57,0 @@ "prepublish": "npm run build" |
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
16356