UNPKG
chainode
Version:
latest (1.0.0)
1.0.0
0.0.1
A private blockchain network based on node.js
github.com/davidemiceli/chainode
davidemiceli/chainode
chainode
/
lib
/
docs
/
webpack
/
helpers.js
12 lines
(9 loc)
•
230 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
'use strict'
;
/* Webpack helpers */
// Move source files as is to another directory
const
move_to
= (
outputPath, files, force=
true
) => files.
map
(
f
=>
({
from
: f,
to
: outputPath,
force
: force}));
module
.
exports
= { move_to };