diff --git a/.npmignore b/.npmignore index b44f605..ee6f947 100644 --- a/.npmignore +++ b/.npmignore @@ -1,3 +1,4 @@ *.md .* +*.tgz test-results/ diff --git a/CHANGELOG.md b/CHANGELOG.md index 33d32d7..b4552f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 1.4.1 +* [#6: Fix bundle.](https://github.com/haensl/eslint-config/issues/6) + ## 1.4.0 * [#4: Migrate to CircleCI.](https://github.com/haensl/eslint-config/issues/4) diff --git a/index.js b/lib/index.js similarity index 100% rename from index.js rename to lib/index.js diff --git a/package.json b/package.json index 8424b9e..c1f3113 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,8 @@ { "name": "@haensl/eslint-config", - "version": "1.4.0", + "version": "1.4.1", "description": "Default ESLint configuration of HP Dietz.", - "main": "index.js", + "main": "lib/index.js", "publishConfig": { "access": "public" },