👕 Replace some double quotes with single ones

This commit is contained in:
Jan Oberhauser 2019-09-19 14:14:37 +02:00
parent e19bdbf6d7
commit d337cbd805
20 changed files with 21 additions and 23 deletions

View file

@ -6,13 +6,13 @@ import {
import {
UserSettings,
} from "n8n-core";
} from 'n8n-core';
import {
ConnectionOptions,
createConnection,
getRepository,
} from "typeorm";
} from 'typeorm';
import {
MongoDb,

View file

@ -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 './';

View file

@ -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';

View file

@ -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);

View file

@ -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';

View file

@ -13,7 +13,7 @@ import {
import {
UserSettings,
} from "n8n-core";
} from 'n8n-core';
import {
IDataObject,

View file

@ -12,7 +12,7 @@ import {
Index,
ObjectID,
ObjectIdColumn,
} from "typeorm";
} from 'typeorm';
@Entity()
export class CredentialsEntity implements ICredentialsDb {

View file

@ -13,7 +13,7 @@ import {
Index,
ObjectID,
ObjectIdColumn,
} from "typeorm";
} from 'typeorm';
@Entity()
export class ExecutionEntity implements IExecutionFlattedDb {

View file

@ -14,7 +14,7 @@ import {
Entity,
ObjectID,
ObjectIdColumn,
} from "typeorm";
} from 'typeorm';
@Entity()
export class WorkflowEntity implements IWorkflowDb {

View file

@ -11,7 +11,7 @@ import {
Entity,
Index,
PrimaryGeneratedColumn,
} from "typeorm";
} from 'typeorm';
@Entity()
export class CredentialsEntity implements ICredentialsDb {

View file

@ -12,7 +12,7 @@ import {
Entity,
Index,
PrimaryGeneratedColumn,
} from "typeorm";
} from 'typeorm';
@Entity()

View file

@ -13,7 +13,7 @@ import {
Column,
Entity,
PrimaryGeneratedColumn,
} from "typeorm";
} from 'typeorm';
@Entity()
export class WorkflowEntity implements IWorkflowDb {

View file

@ -11,7 +11,7 @@ import {
Entity,
Index,
PrimaryGeneratedColumn,
} from "typeorm";
} from 'typeorm';
@Entity()
export class CredentialsEntity implements ICredentialsDb {

View file

@ -11,11 +11,9 @@ import {
Column,
Entity,
Index,
ManyToOne,
PrimaryGeneratedColumn,
} from "typeorm";
} from 'typeorm';
import { WorkflowEntity } from './WorkflowEntity';
@Entity()
export class ExecutionEntity implements IExecutionFlattedDb {

View file

@ -13,7 +13,7 @@ import {
Column,
Entity,
PrimaryGeneratedColumn,
} from "typeorm";
} from 'typeorm';
@Entity()
export class WorkflowEntity implements IWorkflowDb {

View file

@ -5,7 +5,7 @@ import { IBuildOptions } from '.';
import {
UserSettings,
} from "n8n-core";
} from 'n8n-core';
/**

View file

@ -8,7 +8,7 @@ import {
import {
readFile as fsReadFile,
} from 'fs';
import { promisify } from "util";
import { promisify } from 'util';
const fsReadFileAsync = promisify(fsReadFile);

View file

@ -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);

View file

@ -12,7 +12,7 @@ import {
import {
writeFile as fsWriteFile,
} from 'fs';
import { promisify } from "util";
import { promisify } from 'util';
const fsWriteFileAsync = promisify(fsWriteFile);

View file

@ -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;