mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-23 10:32:17 -08:00
🐛 Fix typo and remove not needed import
This commit is contained in:
parent
f43781b137
commit
246fca4903
|
@ -8,7 +8,6 @@ import {
|
||||||
resolve as pathResolve,
|
resolve as pathResolve,
|
||||||
} from 'path';
|
} from 'path';
|
||||||
import {
|
import {
|
||||||
getConnection,
|
|
||||||
getConnectionManager,
|
getConnectionManager,
|
||||||
In,
|
In,
|
||||||
} from 'typeorm';
|
} from 'typeorm';
|
||||||
|
@ -22,7 +21,7 @@ import { RequestOptions } from 'oauth-1.0a';
|
||||||
import * as csrf from 'csrf';
|
import * as csrf from 'csrf';
|
||||||
import * as requestPromise from 'request-promise-native';
|
import * as requestPromise from 'request-promise-native';
|
||||||
import { createHmac } from 'crypto';
|
import { createHmac } from 'crypto';
|
||||||
// IMPORRTANT! Do not switch to anther bcrypt library unless really needed and
|
// IMPORTANT! Do not switch to anther bcrypt library unless really necessary and
|
||||||
// tested with all possible systems like Windows, Alpine on ARM, FreeBSD, ...
|
// tested with all possible systems like Windows, Alpine on ARM, FreeBSD, ...
|
||||||
import { compare } from 'bcryptjs';
|
import { compare } from 'bcryptjs';
|
||||||
import * as promClient from 'prom-client';
|
import * as promClient from 'prom-client';
|
||||||
|
|
Loading…
Reference in a new issue