Skip to content

Commit

Permalink
Merge pull request #1017 from adamcikado/feat/exports
Browse files Browse the repository at this point in the history
feat: add missing exports
  • Loading branch information
thetutlage committed Apr 29, 2024
2 parents ba5961b + 5d87cf8 commit 92ed475
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@
"./services/*": "./build/services/*.js",
"./types/*": "./build/src/types/*.js",
"./migration": "./build/src/migration/main.js",
"./database_provider": "./build/providers/database_provider.js"
"./database_provider": "./build/providers/database_provider.js",
"./utils": "./build/src/utils/index.js"
},
"scripts": {
"pretest": "npm run lint",
Expand Down
1 change: 1 addition & 0 deletions src/orm/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ export { BaseModel, scope } from './base_model/index.js'
export { ModelQueryBuilder } from './query_builder/index.js'
export { SnakeCaseNamingStrategy } from './naming_strategies/snake_case.js'
export { CamelCaseNamingStrategy } from './naming_strategies/camel_case.js'
export { Preloader } from './preloader/index.js'

0 comments on commit 92ed475

Please sign in to comment.