Skip to content

Commit

Permalink
chore: add standard-version dev dep, init CHANGELOG.md, 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
f3rno committed Jun 30, 2020
1 parent 611c222 commit 7c05162
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
@@ -0,0 +1,5 @@
# Changelog

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### 1.0.2 (2020-06-30)
8 changes: 5 additions & 3 deletions package.json
@@ -1,14 +1,15 @@
{
"name": "markdown-it-wikilinks",
"version": "1.0.1",
"version": "1.0.2",
"description": "WikiMedia-style links for the markdown-it parser",
"main": "index.js",
"scripts": {
"coverage": "rimraf coverage && istanbul cover node_modules/.bin/_mocha",
"lint-init": "eslint --init",
"lint": "eslint index.js",
"test": "npm run lint && mocha -R spec",
"test-ci": "npm run lint && istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rimraf ./coverage"
"test-ci": "npm run lint && istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rimraf ./coverage",
"update-version": "./node_modules/.bin/standard-version"
},
"repository": {
"type": "git",
Expand Down Expand Up @@ -36,7 +37,8 @@
"markdown-it-testgen": "^0.1.4",
"mocha": "^3.1.0",
"request": "^2.75.0",
"rimraf": "^2.5.4"
"rimraf": "^2.5.4",
"standard-version": "^8.0.0"
},
"dependencies": {
"extend": "^3.0.0",
Expand Down

0 comments on commit 7c05162

Please sign in to comment.