Skip to content

Commit 75ccbc6

Browse files
committed
1.5.2 bump and config+error fixes
1 parent 3cc3c97 commit 75ccbc6

File tree

3 files changed

+44
-39
lines changed

3 files changed

+44
-39
lines changed

package-lock.json

Lines changed: 39 additions & 34 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@runejs/filestore",
3-
"version": "0.15.0",
3+
"version": "0.15.2",
44
"description": "Tools for managing the RuneJS filestore.",
55
"main": "lib/index.js",
66
"types": "lib/index.d.ts",
@@ -30,12 +30,12 @@
3030
},
3131
"homepage": "https://github.com/runejs/filestore#readme",
3232
"dependencies": {
33-
"@runejs/core": "^1.3.2",
33+
"@runejs/core": "^1.5.4",
3434
"canvas": "^2.8.0",
3535
"node-properties-parser": "0.0.2",
3636
"pngjs": "^6.0.0",
3737
"seek-bzip": "^1.0.5",
38-
"typescript": "^4.2.3"
38+
"tslib": "^2.1.0"
3939
},
4040
"devDependencies": {
4141
"@runejs/eslint-config": "^1.0.0",
@@ -46,7 +46,7 @@
4646
"eslint": "^7.32.0",
4747
"rimraf": "^3.0.2",
4848
"ts-node": "^9.1.1",
49-
"tslib": "^2.1.0"
49+
"typescript": "^4.2.3"
5050
},
5151
"eslintConfig": {
5252
"extends": [

src/filestore/filestore.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export class Filestore {
4747
this.configDir = options?.configDir || filestoreDir;
4848
this.channels = loadFilestore(filestoreDir);
4949

50-
fileNames = getFileNames(this.configDir);
50+
fileNames = getFileNames(filestoreDir);
5151

5252
this.binaryStore = new BinaryStore(this);
5353
this.configStore = new ConfigStore(this);

0 commit comments

Comments
 (0)