🐛 Fix package (#6)

* sync with n8n

* Update package.json

remove format
This commit is contained in:
lublak 2022-01-17 18:21:18 +01:00 committed by GitHub
commit 9d4183364a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 44 additions and 14 deletions

View file

@ -1,8 +1,11 @@
const { src, dest } = require('gulp');
function copyIcons() {
return src('nodes/**/*.png')
.pipe(dest('dist/nodes'));
src('nodes/**/*.{png,svg}')
.pipe(dest('dist/nodes'))
return src('credentials/**/*.{png,svg}')
.pipe(dest('dist/credentials'));
}
exports.default = copyIcons;
exports.default = copyIcons;