🔀 Merge branch 'master' into oauth-support

This commit is contained in:
Jan Oberhauser
2020-05-12 01:56:27 +02:00
159 changed files with 20155 additions and 2001 deletions

View File

@@ -21,7 +21,7 @@ Software: n8n
License: Apache 2.0
Licensor: Jan Oberhauser
Licensor: n8n GmbH
---------------------------------------------------------------------

View File

@@ -140,7 +140,7 @@ export class New extends Command {
// in the correct way
const replaceValues = {
ClassNameReplace: changeCase.pascalCase(nodeName),
DisplayNameReplace: changeCase.titleCase(nodeName),
DisplayNameReplace: changeCase.capitalCase(nodeName),
N8nNameReplace: changeCase.camelCase(nodeName),
NodeDescriptionReplace: additionalAnswers.description,
};

View File

@@ -55,13 +55,13 @@
"@oclif/errors": "^1.2.2",
"@types/express": "^4.16.1",
"@types/node": "^10.10.1",
"change-case": "^3.1.0",
"change-case": "^4.1.1",
"copyfiles": "^2.1.1",
"inquirer": "^7.0.0",
"n8n-core": "^0.31.0",
"n8n-workflow": "^0.28.0",
"replace-in-file": "^4.1.0",
"request": "^2.88.0",
"replace-in-file": "^6.0.0",
"request": "^2.88.2",
"tmp-promise": "^2.0.2",
"typescript": "~3.7.4"
}

View File

@@ -1,6 +1,6 @@
import * as fs from 'fs';
import replaceInFile, { ReplaceInFileConfig } from 'replace-in-file';
import {replaceInFile, ReplaceInFileConfig } from 'replace-in-file';
const { promisify } = require('util');
const fsCopyFile = promisify(fs.copyFile);