Skip to content
Snippets Groups Projects
Commit adcb952c authored by chris's avatar chris
Browse files

import reflect-metadata once

parent 7a159cec
No related branches found
No related tags found
1 merge request!430Hhmi issues
import { Container } from 'inversify';
import 'reflect-metadata';
import deepmerge from 'deepmerge';
import Config from './config/Config';
import defaultConfig from './config/defaultConfig';
import PmPlugins from './PmPlugins';
import 'reflect-metadata';
export default class Application {
constructor(container) {
......
......@@ -6,6 +6,7 @@ export default class ParseRule {
style = null;
exporter = null;
defaultMiddleware = (hook, next) => {
// eslint-disable-next-line no-param-reassign
hook = {};
next();
};
......
......@@ -5,7 +5,6 @@ import { v4 as uuidv4 } from 'uuid';
import { isEmpty } from 'lodash';
import ToolGroups from '../../components/ToolGroups';
import ToolGroupComponent from '../../components/ToolGroupComponent';
import 'reflect-metadata';
@injectable()
class ToolGroup {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment