aboutsummaryrefslogtreecommitdiffstats
path: root/dox-sequence-diagram-ui/tools/copy-assets.js
blob: bc4f4f21c9a88d93ce2e656be91726f97c983a76 (plain)
1
2
3
4
5
6
7
var copy = require('copy');

copy(['**/*.json', '**/*.svg', '**/*.html'], 'lib', {
	cwd: './src'
}, function (err, file) {
	// exposes the vinyl `file` created when the file is copied
});