Skip to content

Commit

Permalink
0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
drudge committed Oct 17, 2024
1 parent 5e3beca commit 2d0e011
Show file tree
Hide file tree
Showing 4 changed files with 4,653 additions and 27,766 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
16
22
13 changes: 8 additions & 5 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
const { src, dest } = require('gulp');

function copyIcons() {
src('nodes/**/*.{png,svg}')
.pipe(dest('dist/nodes'))
return src('nodes/**/*.{png,svg}')
.pipe(dest('dist/nodes'));

return src('credentials/**/*.{png,svg}')
.pipe(dest('dist/credentials'));
// src('nodes/**/*.{png,svg}')
// .pipe(dest('dist/nodes'))

// return src('credentials/**/*.{png,svg}')
// .pipe(dest('dist/credentials'));
}

exports.default = copyIcons;
exports.default = copyIcons;
Loading

0 comments on commit 2d0e011

Please sign in to comment.