Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Support export default in migrations #344

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
12 changes: 12 additions & 0 deletions src/bin/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,18 @@ const createRun = ({ shouldThrow }) => async function run (argv) {
const terminate = makeTerminatingFunction({ shouldThrow })
try {
migrationFunction = require(argv.filePath)

// Support ES Module syntax `export default migrationFunction` like in use with TS-Node
if (typeof migrationFunction !== 'function') {
if (typeof migrationFunction.default === 'function') {
migrationFunction = migrationFunction.default
} else {
const message = chalk`{red.bold The ${argv.filePath} script did not export a function. Did you export default?}\n`
console.error(message)
console.error(e)
terminate(new Error(message))
}
}
} catch (e) {
const message = chalk`{red.bold The ${argv.filePath} script could not be parsed, as it seems to contain syntax errors.}\n`
console.error(message)
Expand Down