diff --git a/.eslintignore b/.eslintignore new file mode 100644 index 0000000..1521c8b --- /dev/null +++ b/.eslintignore @@ -0,0 +1 @@ +dist diff --git a/CHANGELOG.md b/CHANGELOG.md index ab5af85..91a6518 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,8 @@ +# Change Log + +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.0 (2017-05-26) +# 1.0.0 (2017-06-01) - Initial release diff --git a/bower.json b/bower.json index 95e2f88..2ccd8f7 100644 --- a/bower.json +++ b/bower.json @@ -24,5 +24,6 @@ "index.js", "src", "!dist" - ] + ], + "version": "1.0.0" } diff --git a/browser-stubs/sinon.js b/browser-stubs/sinon.js index eb50ed8..7404ead 100644 --- a/browser-stubs/sinon.js +++ b/browser-stubs/sinon.js @@ -1 +1,2 @@ +/* global window */ module.exports = window.sinon; diff --git a/package.json b/package.json index e1b401d..c58e32c 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "watch": "webpack --watch", "test": "eslint .", "prerelease": "npm t", - "release": "standard-version -s", + "release": "standard-version", "postrelease": "npm publish && git push --follow-tags", "update-coc": "weallbehave -o . && git add CODE_OF_CONDUCT.md && git commit -m 'docs(coc): updated CODE_OF_CONDUCT.md'", "update-contrib": "weallcontribute -o . && git add CONTRIBUTING.md && git commit -m 'docs(contributing): updated CONTRIBUTING.md'"