Browse Source

Added coverage reports generation, related to #66

pull/14/head
Vitaly Puzrin 10 years ago
parent
commit
479caaea2d
  1. 1
      .eslintignore
  2. 3
      .gitignore
  3. 13
      .npmignore
  4. 10
      CHANGELOG.md
  5. 3
      Makefile
  6. 1
      bower.json
  7. 1
      package.json

1
.eslintignore

@ -1,4 +1,5 @@
benchmark/implementations/
coverage/
demo/sample.js
dist/
node_modules/

3
.gitignore

@ -1,2 +1,3 @@
/node_modules/
node_modules/
coverage/

13
.npmignore

@ -1,7 +1,8 @@
/benchmark/
/demo/
/support/
/test/
/.*
/Makefile
benchmark/
coverage/
demo/
support/
test/
.*
Makefile

10
CHANGELOG.md

@ -1,4 +1,12 @@
1.2.0 / WIP
1.2.1 / WIP
------------------
- Fixed speed degradation when linkifier enabled.
- Added coverage reports.
- Other minor optimizations and cleanup.
1.2.0 / 2014-10-26
------------------
- Added `<ins>` rule.

3
Makefile

@ -28,6 +28,9 @@ test: lint
echo "CommonMark stat:\n"
./support/specsplit.js test/fixtures/commonmark/spec.txt
cover:
rm -rf cover
istanbul cover node_modules/.bin/_mocha
gh-pages:
if [ "git branch --list gh-pages" ]; then \

1
bower.json

@ -14,6 +14,7 @@
"**/.*",
"benchmark",
"bower_components",
"coverage",
"demo",
"lib",
"node_modules",

1
package.json

@ -29,6 +29,7 @@
"browserify": "*",
"eslint": "0.8.0",
"eslint-plugin-nodeca": "^1.0.0",
"istanbul": "*",
"jade": "^1.6.0",
"stylus": "^0.49.1",
"mocha": "*",

Loading…
Cancel
Save