mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-20 18:25:21 -04:00
fix(migrations): use migration file extension according to runtime
We need to use .ts only if we run inside ts-node or other tools that use it. In all other cases, we need to refer to the .js migration files. Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
parent
f8f198f9c9
commit
10776de54f
2 changed files with 26 additions and 1 deletions
20
backend/src/utils/detectTsNode.ts
Normal file
20
backend/src/utils/detectTsNode.ts
Normal file
|
@ -0,0 +1,20 @@
|
|||
/*
|
||||
* SPDX-FileCopyrightText: 2018 Martin Adámek
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*/
|
||||
|
||||
/**
|
||||
* Stolen from https://github.com/mikro-orm/mikro-orm/blob/20179ec839def5f8144e56f3a6bc89131f7e72a4/packages/core/src/utils/Utils.ts#L689
|
||||
*/
|
||||
export function detectTsNode(): boolean {
|
||||
return (
|
||||
process.argv[0].endsWith('ts-node') || // running via ts-node directly
|
||||
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
||||
// @ts-ignore TS7053
|
||||
!!process[Symbol.for('ts-node.register.instance')] || // check if internal ts-node symbol exists
|
||||
!!process.env.TS_JEST || // check if ts-jest is used (works only with v27.0.4+)
|
||||
process.argv.slice(1).some((arg) => arg.includes('ts-node')) || // registering ts-node runner
|
||||
(require.extensions && !!require.extensions['.ts'])
|
||||
); // check if the extension is registered
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue