Skip to content

Commit

Permalink
Fix missing types
Browse files Browse the repository at this point in the history
  • Loading branch information
tassoevan committed Oct 15, 2024
1 parent fc32ee4 commit 44bb3b7
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/i18n/src/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ const languages = files.map((file) => path.basename(file, '.i18n.json'));

// write the files
if (fs.existsSync(`./dist`)) {
fs.rmdirSync(`./dist`, { recursive: true });
fs.rmSync(`./dist`, { recursive: true });
}
fs.mkdirSync(`./dist`, { recursive: true });

Expand Down
1 change: 1 addition & 0 deletions packages/server-fetch/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"version": "0.0.3",
"private": true,
"devDependencies": {
"@types/node-fetch": "~2.6.11",
"eslint": "~8.45.0",
"typescript": "~5.5.4"
},
Expand Down
11 changes: 11 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -10034,6 +10034,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "@rocket.chat/server-fetch@workspace:packages/server-fetch"
dependencies:
"@types/node-fetch": "npm:~2.6.11"
"@types/proxy-from-env": "npm:^1.0.4"
eslint: "npm:~8.45.0"
http-proxy-agent: "npm:^5.0.0"
Expand Down Expand Up @@ -14228,6 +14229,16 @@ __metadata:
languageName: node
linkType: hard

"@types/node-fetch@npm:~2.6.11":
version: 2.6.11
resolution: "@types/node-fetch@npm:2.6.11"
dependencies:
"@types/node": "npm:*"
form-data: "npm:^4.0.0"
checksum: 10/c416df8f182ec3826278ea42557fda08f169a48a05e60722d9c8edd4e5b2076ae281c6b6601ad406035b7201f885b0257983b61c26b3f9eb0f41192a807b5de5
languageName: node
linkType: hard

"@types/node-gcm@npm:^1.0.5":
version: 1.0.5
resolution: "@types/node-gcm@npm:1.0.5"
Expand Down

0 comments on commit 44bb3b7

Please sign in to comment.