Skip to content

Commit

Permalink
fix: generate posix paths for migrations (#11468)
Browse files Browse the repository at this point in the history
Fixes: FRMW-2913

Related Github issue - #11330
  • Loading branch information
thetutlage authored Feb 17, 2025
1 parent b53ea77 commit 32c5015
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 5 deletions.
6 changes: 6 additions & 0 deletions .changeset/unlucky-buses-cheat.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@medusajs/medusa": patch
"@medusajs/utils": patch
---

fix: generate posix paths for migrations
3 changes: 2 additions & 1 deletion packages/core/utils/src/common/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,4 +81,5 @@ export * from "./upper-case-first"
export * from "./validate-handle"
export * from "./wrap-handler"
export * from "./merge-plugin-modules"
export * from "./merge-metadata"
export * from "./to-unix-slash"
export * from "./merge-metadata"
8 changes: 8 additions & 0 deletions packages/core/utils/src/common/to-unix-slash.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export function toUnixSlash(path: string) {
const isExtendedLengthPath = path.startsWith("\\\\?\\")
if (isExtendedLengthPath) {
return path
}

return path.replace(/\\/g, "/")
}
9 changes: 5 additions & 4 deletions packages/medusa/src/commands/plugin/db/generate.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
import { glob } from "glob"
import { logger } from "@medusajs/framework/logger"
import {
defineMikroOrmCliConfig,
toUnixSlash,
DmlEntity,
dynamicImport,
defineMikroOrmCliConfig,
} from "@medusajs/framework/utils"
import { dirname, join } from "path"

import { MetadataStorage } from "@mikro-orm/core"
import { MikroORM } from "@mikro-orm/postgresql"
import { glob } from "glob"

const TERMINAL_SIZE = process.stdout.columns

Expand All @@ -24,7 +25,7 @@ const main = async function ({ directory }) {
}[]

const modulePaths = glob.sync(
join(directory, "src", "modules", "*", "index.ts")
toUnixSlash(join(directory, "src", "modules", "*", "index.ts"))
)

for (const path of modulePaths) {
Expand Down Expand Up @@ -61,7 +62,7 @@ const main = async function ({ directory }) {
async function getEntitiesForModule(path: string) {
const entities = [] as any[]

const entityPaths = glob.sync(join(path, "models", "*.ts"), {
const entityPaths = glob.sync(toUnixSlash(join(path, "models", "*.ts")), {
ignore: ["**/index.{js,ts}", "**/*.d.ts"],
})

Expand Down

0 comments on commit 32c5015

Please sign in to comment.