Skip to content

Commit

Permalink
Making channels and indexes public within filestore an 0.12.3 bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Tynarus committed Apr 11, 2021
1 parent 7794784 commit c21e1d7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@runejs/filestore",
"version": "0.12.2",
"version": "0.12.3",
"description": "Tools for managing the RuneJS filestore.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions src/filestore/filestore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ export class Filestore {
public readonly widgetStore: WidgetStore;
public readonly textureStore: TextureStore;

private readonly channels: FilestoreChannels;
public readonly channels: FilestoreChannels;

private readonly indexes = new Map<number, FileIndex>();
public readonly indexes = new Map<number, FileIndex>();

public constructor(
filestoreDir: string,
Expand Down

0 comments on commit c21e1d7

Please sign in to comment.