Skip to content

Commit

Permalink
reloading adds to manager
Browse files Browse the repository at this point in the history
  • Loading branch information
slashinfty committed Sep 3, 2023
1 parent 59299d8 commit a631791
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tournament-organizer",
"version": "3.2.5",
"version": "3.2.6",
"description": "JavaScript library for running tournaments",
"exports": {
".": {
Expand Down Expand Up @@ -40,17 +40,17 @@
},
"homepage": "https://github.com/slashinfty/tournament-organizer/blob/main/DOCS.md",
"dependencies": {
"randomstring": "^1.2.3",
"randomstring": "^1.3.0",
"tournament-pairings": "^1.5.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^11.0.0",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-typescript": "^11.1.3",
"@types/randomstring": "^1.1.8",
"rollup": "^3.12.0",
"rollup": "^3.28.1",
"rollup-plugin-polyfill-node": "^0.12.0",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
"tslib": "^2.6.2",
"typescript": "^5.2.2"
}
}
1 change: 1 addition & 0 deletions src/Manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ export class Manager {
tournament.settings = {
status: tourney.status
};
this.tournaments.push(tournament);
return tournament;
}

Expand Down

0 comments on commit a631791

Please sign in to comment.