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/ benchmark/implementations/
coverage/
demo/sample.js demo/sample.js
dist/ dist/
node_modules/ node_modules/

3
.gitignore

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

13
.npmignore

@ -1,7 +1,8 @@
/benchmark/ benchmark/
/demo/ coverage/
/support/ demo/
/test/ support/
/.* test/
/Makefile .*
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. - Added `<ins>` rule.

3
Makefile

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

1
bower.json

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

1
package.json

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

Loading…
Cancel
Save