Skip to content

Commit

Permalink
1.5.2 bump and config+error fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Tynarus committed Aug 27, 2021
1 parent 3cc3c97 commit 75ccbc6
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 39 deletions.
73 changes: 39 additions & 34 deletions package-lock.json

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

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@runejs/filestore",
"version": "0.15.0",
"version": "0.15.2",
"description": "Tools for managing the RuneJS filestore.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down Expand Up @@ -30,12 +30,12 @@
},
"homepage": "https://github.com/runejs/filestore#readme",
"dependencies": {
"@runejs/core": "^1.3.2",
"@runejs/core": "^1.5.4",
"canvas": "^2.8.0",
"node-properties-parser": "0.0.2",
"pngjs": "^6.0.0",
"seek-bzip": "^1.0.5",
"typescript": "^4.2.3"
"tslib": "^2.1.0"
},
"devDependencies": {
"@runejs/eslint-config": "^1.0.0",
Expand All @@ -46,7 +46,7 @@
"eslint": "^7.32.0",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"tslib": "^2.1.0"
"typescript": "^4.2.3"
},
"eslintConfig": {
"extends": [
Expand Down
2 changes: 1 addition & 1 deletion src/filestore/filestore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export class Filestore {
this.configDir = options?.configDir || filestoreDir;
this.channels = loadFilestore(filestoreDir);

fileNames = getFileNames(this.configDir);
fileNames = getFileNames(filestoreDir);

this.binaryStore = new BinaryStore(this);
this.configStore = new ConfigStore(this);
Expand Down

0 comments on commit 75ccbc6

Please sign in to comment.