diff --git a/gulpfile.js b/gulpfile.js index 58ba6ec..908e970 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -1,8 +1,11 @@ const { src, dest } = require('gulp'); function copyIcons() { - return src('nodes/**/*.{png,svg}') - .pipe(dest('dist/nodes')); + src('nodes/**/*.{png,svg}') + .pipe(dest('dist/nodes')) + + return src('credentials/**/*.{png,svg}') + .pipe(dest('dist/credentials')); } exports.default = copyIcons; diff --git a/package.json b/package.json index 83888f9..c56876c 100644 --- a/package.json +++ b/package.json @@ -55,14 +55,14 @@ "genversion": "^3.1.1", "gulp": "^4.0.0", "jest": "^27.4.7", - "n8n-workflow": "~0.98.0", + "n8n-workflow": "~0.101.0", "nodelinter": "^0.1.9", "ts-jest": "^27.1.3", "tslint": "^6.1.2", "typescript": "~4.6.0" }, "dependencies": { - "n8n-core": "~0.116.0" + "n8n-core": "~0.119.0" }, "jest": { "transform": { diff --git a/tsconfig.json b/tsconfig.json index ae93fb8..2be084b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -17,7 +17,9 @@ "outDir": "./dist/", "target": "es2019", "sourceMap": true, - }, + "esModuleInterop": true, + "useUnknownInCatchVariables": false, + }, "include": [ "credentials/**/*", "src/**/*", diff --git a/tslint.json b/tslint.json index ed50fe2..78b5a38 100644 --- a/tslint.json +++ b/tslint.json @@ -64,7 +64,7 @@ "ordered-imports": [true, { "import-sources-order": "any", "named-imports-order": "case-insensitive" - }], + }], "no-namespace": [ true, "allow-declarations" @@ -90,13 +90,13 @@ "trailing-comma": [ true, { - "multiline": { - "objects": "always", - "arrays": "always", - "functions": "always", - "typeLiterals": "ignore" - }, - "esSpecCompliant": true + "multiline": { + "objects": "always", + "arrays": "always", + "functions": "always", + "typeLiterals": "ignore" + }, + "esSpecCompliant": true } ], "triple-equals": [