This commit is contained in:
TheArcaneBrony
2022-08-30 17:10:46 +02:00
parent 05f6a0d6de
commit 688c17b8f5
3 changed files with 15 additions and 3 deletions
+1 -1
View File
@@ -43,6 +43,6 @@ module.exports = function (config) {
error.stdout.replaceAll(/[\u001b\u009b][[()#;?]*(?:[0-9]{1,4}(?:;[0-9]{0,4})*)?[0-9A-ORZcf-nqry=><]/g, "")
);
}
if(config.throwOnError) throw error;
if (config.throwOnError) throw error;
}
};
+13 -1
View File
@@ -1,4 +1,16 @@
import { Column, CreateDateColumn, Entity, Index, JoinColumn, JoinTable, ManyToMany, ManyToOne, OneToMany, Relation, RelationId } from "typeorm";
import {
Column,
CreateDateColumn,
Entity,
Index,
JoinColumn,
JoinTable,
ManyToMany,
ManyToOne,
OneToMany,
Relation,
RelationId
} from "typeorm";
import { InteractionType } from "../interfaces/Interaction";
import { Application } from "./Application";
import { Attachment } from "./Attachment";
+1 -1
View File
@@ -1,5 +1,5 @@
import { Column, Entity, FindOneOptions, FindOptionsSelectByString, JoinColumn, OneToMany, OneToOne, Relation } from "typeorm";
import { Member, Session, UserSettings } from ".";
import { Session, UserSettings } from ".";
import { Config, FieldErrors, Snowflake, trimSpecial } from "..";
import { BitField } from "../util/BitField";
import { OrmUtils } from "../util/imports/OrmUtils";