Skip to content
This repository was archived by the owner on Feb 26, 2024. It is now read-only.

Commit c6dac7d

Browse files
gkalpakpetebacondarwin
authored andcommitted
fixup! chore(*): switch from bower to npm for frontend dependencies
1 parent 531841a commit c6dac7d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/copy-libs.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ const shx = require('shelljs');
2525
// Copy lib files
2626
shx.rm('-rf', baseDstDir);
2727

28-
files.forEach(relPath => {
28+
for (let relPath of files) {
2929
const srcPath = path.join(baseSrcDir, relPath);
3030
const dstPath = path.join(baseDstDir, relPath);
3131
const dstDir = path.dirname(dstPath);
3232

3333
shx.mkdir('-p', dstDir);
3434
shx.cp(srcPath, dstDir);
35-
});
35+
}

0 commit comments

Comments
 (0)