Skip to content

Commit

Permalink
v4.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Martynas Žilinskas committed Apr 12, 2018
1 parent 3e48d9f commit 4416457
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "simplr-dropdown",
"version": "4.0.0",
"version": "4.0.1",
"description": "A flexible React dropdown component.",
"types": "./dist/index.d.ts",
"main": "./dist/simplr-dropdown.js",
Expand Down
4 changes: 2 additions & 2 deletions tools/travis-release/release.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tools/travis-release/release.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ async function Main(): Promise<void> {

let isPrerelease: boolean = false;
for (const tag of prereleaseTags) {
if (packageJsonContents.version.indexOf(tag)) {
if (packageJsonContents.version.indexOf(tag) !== -1) {
isPrerelease = true;
break;
}
Expand Down

0 comments on commit 4416457

Please sign in to comment.