Skip to content

Commit

Permalink
Changed writeLogs method to public
Browse files Browse the repository at this point in the history
  • Loading branch information
YashTotale committed Feb 19, 2021
1 parent 5daffe7 commit 3815409
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,3 +93,4 @@ jobs:
env:
GIT_USER: YashTotale
GIT_PASS: ${{secrets.GH_PAT}}
USE_SSH: false
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,7 @@ export class Logger {
* await logger.writeLogs();
* ```
*/
private writeLogs(): Promise<void> {
public writeLogs(): Promise<void> {
return writeFile(this.logsPath, JSON.stringify(this.logs), "utf-8");
}

Expand Down
4 changes: 2 additions & 2 deletions website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
"@tsconfig/docusaurus": "^1.0.2",
"@types/react": "^17.0.2",
"@types/react-helmet": "^6.1.0",
"@types/react-router-dom": "^5.1.7",
"typedoc": "^0.20.25",
"typedoc-plugin-markdown": "^3.5.0",
"@types/react-router-dom": "^5.1.7"
"typedoc-plugin-markdown": "^3.5.0"
},
"browserslist": {
"production": [
Expand Down

0 comments on commit 3815409

Please sign in to comment.