Skip to content

Commit

Permalink
chore: Add changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
jubianchi committed Apr 11, 2017
1 parent 79fd9f6 commit 6fa20f7
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<a name="1.0.0"></a>
# 1.0.0 (2017-04-11)


### Bug Fixes

* Typo in the readme ([0ee49a3](https://github.com/pmsipilot/esdoc-test-plugin/commit/0ee49a3))



4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
},
"devDependencies": {
"chai": "^3.5.0",
"conventional-changelog-cli": "^1.2.0",
"conventional-changelog-lint": "^1.1.0",
"esdoc": "^0.5.2",
"eslint": "^3.13.1",
"eslint-config-airbnb-base": "^11.0.1",
Expand All @@ -19,6 +21,8 @@
"eslint": "^3.13"
},
"scripts": {
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1",
"changelog-lint": "conventional-changelog-lint -p angular --from master --to HEAD",
"cs": "eslint --fix src/",
"doc": "esdoc"
}
Expand Down
4 changes: 2 additions & 2 deletions src/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,11 @@ class Test {
break;

case 'expect':
assert = `const expect = require('expect');`;
assert = 'const expect = require(\'expect\');';
break;

case 'expect.js':
assert = `const expect = require('expect.js');`;
assert = 'const expect = require(\'expect.js\');';
break;

case 'node':
Expand Down

0 comments on commit 6fa20f7

Please sign in to comment.