diff options
author | Fabio Berger <me@fabioberger.com> | 2018-02-10 03:53:38 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-02-10 03:53:38 +0800 |
commit | 20e2673b829d646b919c1821fb4a8db264ab37ce (patch) | |
tree | 06a3a41bd4ce3d5d465bebacc8690cad6dc3a6c5 /packages | |
parent | 7e04c4f24b789a2ce8f4a5884212cfb1e508b508 (diff) | |
download | dexon-sol-tools-20e2673b829d646b919c1821fb4a8db264ab37ce.tar dexon-sol-tools-20e2673b829d646b919c1821fb4a8db264ab37ce.tar.gz dexon-sol-tools-20e2673b829d646b919c1821fb4a8db264ab37ce.tar.bz2 dexon-sol-tools-20e2673b829d646b919c1821fb4a8db264ab37ce.tar.lz dexon-sol-tools-20e2673b829d646b919c1821fb4a8db264ab37ce.tar.xz dexon-sol-tools-20e2673b829d646b919c1821fb4a8db264ab37ce.tar.zst dexon-sol-tools-20e2673b829d646b919c1821fb4a8db264ab37ce.zip |
Fix issue where custom TSLint rules were not being published to NPM
Diffstat (limited to 'packages')
-rw-r--r-- | packages/tslint-config/.npmignore | 4 | ||||
-rw-r--r-- | packages/tslint-config/CHANGELOG.md | 6 | ||||
-rw-r--r-- | packages/tslint-config/package.json | 5 |
3 files changed, 9 insertions, 6 deletions
diff --git a/packages/tslint-config/.npmignore b/packages/tslint-config/.npmignore new file mode 100644 index 000000000..1b4b66b7b --- /dev/null +++ b/packages/tslint-config/.npmignore @@ -0,0 +1,4 @@ +node_modules/ +scripts/ +tsconfig.json +rules/ diff --git a/packages/tslint-config/CHANGELOG.md b/packages/tslint-config/CHANGELOG.md index 04d705941..8f73b7b40 100644 --- a/packages/tslint-config/CHANGELOG.md +++ b/packages/tslint-config/CHANGELOG.md @@ -1,6 +1,10 @@ # CHANGELOG -## v0.5.0 - _TBD, 2018_ +## v0.4.8 - _February 9, 2018_ + + * Fix publish issue where custom TSLint rules were not being included + +## v0.4.7 - _February 7, 2018_ * Modified custom 'underscore-privates' rule, changing it to 'underscore-private-and-protected' requiring underscores to be prepended to both private and protected variable names (#354) diff --git a/packages/tslint-config/package.json b/packages/tslint-config/package.json index d48f17954..15f44b50b 100644 --- a/packages/tslint-config/package.json +++ b/packages/tslint-config/package.json @@ -9,11 +9,6 @@ "clean": "shx rm -rf lib", "lint": "tslint --project . 'rules/**/*.ts'" }, - "files": [ - "tslint.js", - "README.md", - "LICENSE" - ], "repository": { "type": "git", "url": "git://github.com/0xProject/0x.js.git" |