Skip to content

Commit b4304c6

Browse files
committed
style: format source code
1 parent 76818f9 commit b4304c6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/stores/file.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ export class FileStore implements SessionStoreContract {
100100
/**
101101
* Check if the file has been expired and return null (if expired)
102102
*/
103-
const sessionWillExpireAt = stats.mtimeMs + (string.seconds.parse(this.#age) * 1000)
103+
const sessionWillExpireAt = stats.mtimeMs + string.seconds.parse(this.#age) * 1000
104104
if (Date.now() > sessionWillExpireAt) {
105105
debug('file store: expired session data %s', sessionId)
106106
return null

tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
"extends": "@adonisjs/tsconfig/tsconfig.package.json",
33
"compilerOptions": {
44
"rootDir": "./",
5-
"outDir": "./build",
6-
},
5+
"outDir": "./build"
6+
}
77
}

0 commit comments

Comments
 (0)