mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-24 20:24:05 -08:00
👕 Replace some double quotes with single ones
This commit is contained in:
parent
e19bdbf6d7
commit
d337cbd805
|
@ -6,13 +6,13 @@ import {
|
|||
|
||||
import {
|
||||
UserSettings,
|
||||
} from "n8n-core";
|
||||
} from 'n8n-core';
|
||||
|
||||
import {
|
||||
ConnectionOptions,
|
||||
createConnection,
|
||||
getRepository,
|
||||
} from "typeorm";
|
||||
} from 'typeorm';
|
||||
|
||||
import {
|
||||
MongoDb,
|
||||
|
|
|
@ -4,7 +4,7 @@ import { join as pathJoin } from 'path';
|
|||
import {
|
||||
readFile as fsReadFile,
|
||||
} from 'fs';
|
||||
import { promisify } from "util";
|
||||
import { promisify } from 'util';
|
||||
import { IDataObject } from 'n8n-workflow';
|
||||
|
||||
import { IPackageVersions } from './';
|
||||
|
|
|
@ -19,7 +19,7 @@ import {
|
|||
} from 'n8n-core';
|
||||
|
||||
|
||||
import { ObjectID, Repository } from "typeorm";
|
||||
import { ObjectID, Repository } from 'typeorm';
|
||||
|
||||
import { ChildProcess } from 'child_process';
|
||||
import { Url } from 'url';
|
||||
|
|
|
@ -17,7 +17,7 @@ import {
|
|||
} from 'fs';
|
||||
import * as glob from 'glob-promise';
|
||||
import * as path from 'path';
|
||||
import { promisify } from "util";
|
||||
import { promisify } from 'util';
|
||||
|
||||
const fsAccessAsync = promisify(fsAccess);
|
||||
const fsReaddirAsync = promisify(fsReaddir);
|
||||
|
|
|
@ -5,7 +5,7 @@ import {
|
|||
} from 'path';
|
||||
import {
|
||||
getConnectionManager,
|
||||
} from "typeorm";
|
||||
} from 'typeorm';
|
||||
import * as bodyParser from 'body-parser';
|
||||
import * as history from 'connect-history-api-fallback';
|
||||
import * as requestPromise from 'request-promise-native';
|
||||
|
|
|
@ -13,7 +13,7 @@ import {
|
|||
|
||||
import {
|
||||
UserSettings,
|
||||
} from "n8n-core";
|
||||
} from 'n8n-core';
|
||||
|
||||
import {
|
||||
IDataObject,
|
||||
|
|
|
@ -12,7 +12,7 @@ import {
|
|||
Index,
|
||||
ObjectID,
|
||||
ObjectIdColumn,
|
||||
} from "typeorm";
|
||||
} from 'typeorm';
|
||||
|
||||
@Entity()
|
||||
export class CredentialsEntity implements ICredentialsDb {
|
||||
|
|
|
@ -13,7 +13,7 @@ import {
|
|||
Index,
|
||||
ObjectID,
|
||||
ObjectIdColumn,
|
||||
} from "typeorm";
|
||||
} from 'typeorm';
|
||||
|
||||
@Entity()
|
||||
export class ExecutionEntity implements IExecutionFlattedDb {
|
||||
|
|
|
@ -14,7 +14,7 @@ import {
|
|||
Entity,
|
||||
ObjectID,
|
||||
ObjectIdColumn,
|
||||
} from "typeorm";
|
||||
} from 'typeorm';
|
||||
|
||||
@Entity()
|
||||
export class WorkflowEntity implements IWorkflowDb {
|
||||
|
|
|
@ -11,7 +11,7 @@ import {
|
|||
Entity,
|
||||
Index,
|
||||
PrimaryGeneratedColumn,
|
||||
} from "typeorm";
|
||||
} from 'typeorm';
|
||||
|
||||
@Entity()
|
||||
export class CredentialsEntity implements ICredentialsDb {
|
||||
|
|
|
@ -12,7 +12,7 @@ import {
|
|||
Entity,
|
||||
Index,
|
||||
PrimaryGeneratedColumn,
|
||||
} from "typeorm";
|
||||
} from 'typeorm';
|
||||
|
||||
|
||||
@Entity()
|
||||
|
|
|
@ -13,7 +13,7 @@ import {
|
|||
Column,
|
||||
Entity,
|
||||
PrimaryGeneratedColumn,
|
||||
} from "typeorm";
|
||||
} from 'typeorm';
|
||||
|
||||
@Entity()
|
||||
export class WorkflowEntity implements IWorkflowDb {
|
||||
|
|
|
@ -11,7 +11,7 @@ import {
|
|||
Entity,
|
||||
Index,
|
||||
PrimaryGeneratedColumn,
|
||||
} from "typeorm";
|
||||
} from 'typeorm';
|
||||
|
||||
@Entity()
|
||||
export class CredentialsEntity implements ICredentialsDb {
|
||||
|
|
|
@ -11,11 +11,9 @@ import {
|
|||
Column,
|
||||
Entity,
|
||||
Index,
|
||||
ManyToOne,
|
||||
PrimaryGeneratedColumn,
|
||||
} from "typeorm";
|
||||
} from 'typeorm';
|
||||
|
||||
import { WorkflowEntity } from './WorkflowEntity';
|
||||
|
||||
@Entity()
|
||||
export class ExecutionEntity implements IExecutionFlattedDb {
|
||||
|
|
|
@ -13,7 +13,7 @@ import {
|
|||
Column,
|
||||
Entity,
|
||||
PrimaryGeneratedColumn,
|
||||
} from "typeorm";
|
||||
} from 'typeorm';
|
||||
|
||||
@Entity()
|
||||
export class WorkflowEntity implements IWorkflowDb {
|
||||
|
|
|
@ -5,7 +5,7 @@ import { IBuildOptions } from '.';
|
|||
|
||||
import {
|
||||
UserSettings,
|
||||
} from "n8n-core";
|
||||
} from 'n8n-core';
|
||||
|
||||
|
||||
/**
|
||||
|
|
|
@ -8,7 +8,7 @@ import {
|
|||
import {
|
||||
readFile as fsReadFile,
|
||||
} from 'fs';
|
||||
import { promisify } from "util";
|
||||
import { promisify } from 'util';
|
||||
|
||||
const fsReadFileAsync = promisify(fsReadFile);
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ import * as path from 'path';
|
|||
import {
|
||||
readFile as fsReadFile,
|
||||
} from 'fs';
|
||||
import { promisify } from "util";
|
||||
import { promisify } from 'util';
|
||||
|
||||
const fsReadFileAsync = promisify(fsReadFile);
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@ import {
|
|||
import {
|
||||
writeFile as fsWriteFile,
|
||||
} from 'fs';
|
||||
import { promisify } from "util";
|
||||
import { promisify } from 'util';
|
||||
|
||||
const fsWriteFileAsync = promisify(fsWriteFile);
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import { Workflow } from './Workflow';
|
||||
import * as express from "express";
|
||||
import * as express from 'express';
|
||||
|
||||
export interface IBinaryData {
|
||||
[key: string]: string | undefined;
|
||||
|
|
Loading…
Reference in a new issue