Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 14 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,26 +7,27 @@
"author": "Martin Adamek",
"license": "MIT",
"homepage": "https://mikro-orm.io/docs/guide",

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

please remove the blank lines, same for the one on line 30

"dependencies": {
"@fastify/jwt": "^8.0.1",
"@mikro-orm/core": "^6.4.0",
"@mikro-orm/migrations": "^6.4.0",
"@fastify/jwt": "^9.0.4",
"@mikro-orm/core": "^6.4.6",
"@mikro-orm/migrations": "^6.4.6",
"@mikro-orm/reflection": "^6.4.6",
"@mikro-orm/seeder": "^6.4.6",
Comment on lines +15 to +16
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is wrong, those should stay dev deps

"@mikro-orm/sql-highlighter": "^1.0.1",
"@mikro-orm/sqlite": "^6.4.0",
"@mikro-orm/sqlite": "^6.4.6",
"argon2": "^0.41.1",
"fastify": "^4.28.1",
"zod": "^3.23.8"
"fastify": "^5.2.1",
"zod": "^3.24.2"
},
"devDependencies": {
"@mikro-orm/cli": "^6.4.0",
"@mikro-orm/reflection": "^6.4.0",
"@mikro-orm/seeder": "^6.4.0",
"@types/node": "^22.9.0",
"@types/slug": "^5.0.9",
"@mikro-orm/cli": "^6.4.6",
"@types/node": "^22.13.4",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
"typescript": "^5.7.3",
"vitest": "^3.0.5"
},

"scripts": {
"build": "tsc && npx mikro-orm-esm cache:generate --combined",
"start": "node --no-warnings=ExperimentalWarning --loader ts-node/esm src/server.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/mikro-orm.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ export default defineConfig({
// for highlighting the SQL queries
highlighter: new SqlHighlighter(),
...options,
});
}) as Options;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this has no effect