Iterate
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
34d7eca8f3
commit
5a534e4010
3 changed files with 3 additions and 8 deletions
|
@ -5,8 +5,8 @@
|
|||
import parseArgs from "minimist";
|
||||
import * as chokidar from "chokidar";
|
||||
import * as fs from "node:fs";
|
||||
import * as _ from "lodash";
|
||||
import * as Cpx from "cpx";
|
||||
import _ from "lodash";
|
||||
import { Cpx } from "cpx";
|
||||
import * as loaderUtils from "loader-utils";
|
||||
|
||||
const I18N_BASE_PATH = "src/i18n/strings/";
|
||||
|
@ -67,7 +67,7 @@ function next(i: number, err?: Error): void {
|
|||
const source = ent[0];
|
||||
const dest = ent[1];
|
||||
const opts = ent[2] || {};
|
||||
const cpx = new Cpx.Cpx(source, dest);
|
||||
const cpx = new Cpx(source, dest);
|
||||
|
||||
if (verbose) {
|
||||
cpx.on("copy", (event) => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue