mirror of
https://github.com/n8n-io/n8n.git
synced 2026-06-01 17:27:14 +02:00
* In packages/cli/src/Db.ts, conditional test of dbType replaced by a switch; * removeAll() function adapted to not cause an error using MySQL; * Added the cross-env module in the "serve" script in the packages/editor-ui/package.json file. This was done to ensure compatibility between platforms when declaring environment variables. Without it, Windows compilation would give an error, for example; * .idea added to .gitignore (IntelliJ IDEA solutions);
12 lines
211 B
TypeScript
12 lines
211 B
TypeScript
import * as MongoDb from './mongodb';
|
|
import * as PostgresDb from './postgresdb';
|
|
import * as SQLite from './sqlite';
|
|
import * as MySQLDb from './mysqldb';
|
|
|
|
export {
|
|
MongoDb,
|
|
PostgresDb,
|
|
SQLite,
|
|
MySQLDb,
|
|
};
|