Skip to content

Commit

Permalink
refactor: export isCuid helper method
Browse files Browse the repository at this point in the history
  • Loading branch information
thetutlage committed Dec 22, 2023
1 parent 45d8134 commit 12d852a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -115,14 +115,14 @@
"typescript": "^5.3.3"
},
"dependencies": {
"@adonisjs/ace": "^12.3.2-3",
"@adonisjs/application": "^8.0.0-4",
"@adonisjs/ace": "^12.3.2-5",
"@adonisjs/application": "^8.0.0-5",
"@adonisjs/bodyparser": "^10.0.0-3",
"@adonisjs/config": "^4.2.1-7",
"@adonisjs/encryption": "^5.1.2-5",
"@adonisjs/env": "^4.2.0-8",
"@adonisjs/events": "^9.0.0-2",
"@adonisjs/fold": "^9.9.3-13",
"@adonisjs/fold": "^9.9.3-14",
"@adonisjs/hash": "^8.3.1-9",
"@adonisjs/http-server": "^7.0.0-4",
"@adonisjs/logger": "^5.4.2-8",
Expand Down
2 changes: 1 addition & 1 deletion src/helpers/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
*/

export { default as parseImports } from 'parse-imports'
export { createId as cuid } from '@paralleldrive/cuid2'
export { createId as cuid, isCuid } from '@paralleldrive/cuid2'
export {
slash,
base64,
Expand Down
2 changes: 1 addition & 1 deletion src/ignitor/http.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export class HttpServerProcess {
app: ApplicationService,
logger: LoggerService,
emitter: EmitterService,
payload: { host: string; port: number; duration?: [number, number] }
payload: { host: string; port: number; duration: [number, number] }
) {
/**
* Notify parent process
Expand Down

0 comments on commit 12d852a

Please sign in to comment.