Releases: himedlooff/doxray
Releases · himedlooff/doxray
More flexible default regex
Regex is not forced to start at the beginning of a line
Better regex option support
Changed
- Merge regex options with regex defaults
- Use file extension for selecting regex, or fallback to CSS when no regex
Added support for an ignore comment for cases where you only want to document some classes in your code
Added support for overriding the default regex patterns with the `options` object
Added
- Added support for overriding the default regex patterns with the
options
object.
Changed
- Changed the way options are merged in
utils.js/handleOptions
. - Changed the signature for the
Doxray.run
function fromfunction( src, merge )
tofunction( src, options )
Removed
- Removed references to a non-functional
merge
feature.
Fixed vulnerable dependencies
0.7.3 Fixed vulnerable dependencies
Fixes NPM Install bug
There was a bug where NPM was ignoring utils.js
. This release fixes that. DANG YOU NPM!!!
Breaking changes
- Ports the
simple-schema
branch tomaster
. The schema has been simplified.
Dox-ray returns one array of pattern objects instead of an array of doc/code
pairs. Each pattern object has reserved properties likefilename
and common
file extensions likeless
,scss
, andcss
.
Minor Beta bump
0.4.0 - 2015-05-04
Added
- Simplified require usage, you no longer need to use
new Doxray()
. - Normalized schema, now they are all Arrays of files with arrays of doc/code
pairs, even if it's just one file. writeJS()
function, which is sometimes easier than having to decode a JSON
file.- Support for post parse processors.
- Post parse processors for adding slugs and color palette data.