From 959b15bb9facb6fa09481095c3aa040a834f00c3 Mon Sep 17 00:00:00 2001 From: Javier Arce Date: Sun, 17 Jan 2016 22:19:57 +0100 Subject: [PATCH] Add copy task --- tasks/copy.js | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 tasks/copy.js diff --git a/tasks/copy.js b/tasks/copy.js new file mode 100644 index 0000000..fd09f93 --- /dev/null +++ b/tasks/copy.js @@ -0,0 +1,7 @@ +module.exports = { + main: { + files: [ + { expand: true, cwd: 'src/', src: 'fonts/**', dest: 'dist/' }, + ] + } +};