prebundle 1.2.5 → 1.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/compiled/fast-glob/index.js +361 -289
- package/compiled/fast-glob/package.json +1 -1
- package/compiled/fs-extra/index.js +185 -174
- package/compiled/fs-extra/license +1 -1
- package/compiled/fs-extra/package.json +1 -1
- package/compiled/rslog/index.js +9 -9
- package/compiled/rslog/package.json +1 -1
- package/dist/index.js +56 -68
- package/package.json +13 -13
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
(() => {
|
|
2
2
|
var __webpack_modules__ = {
|
|
3
|
-
|
|
3
|
+
568: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
4
4
|
"use strict";
|
|
5
|
-
const fs = __nccwpck_require__(
|
|
6
|
-
const path = __nccwpck_require__(
|
|
7
|
-
const mkdirsSync = __nccwpck_require__(
|
|
8
|
-
const utimesMillisSync = __nccwpck_require__(
|
|
9
|
-
const stat = __nccwpck_require__(
|
|
5
|
+
const fs = __nccwpck_require__(551);
|
|
6
|
+
const path = __nccwpck_require__(928);
|
|
7
|
+
const mkdirsSync = __nccwpck_require__(90).mkdirsSync;
|
|
8
|
+
const utimesMillisSync = __nccwpck_require__(847).utimesMillisSync;
|
|
9
|
+
const stat = __nccwpck_require__(106);
|
|
10
10
|
function copySync(src, dest, opts) {
|
|
11
11
|
if (typeof opts === "function") {
|
|
12
12
|
opts = { filter: opts };
|
|
@@ -101,9 +101,15 @@
|
|
|
101
101
|
return setDestMode(dest, srcMode);
|
|
102
102
|
}
|
|
103
103
|
function copyDir(src, dest, opts) {
|
|
104
|
-
fs.
|
|
105
|
-
|
|
106
|
-
|
|
104
|
+
const dir = fs.opendirSync(src);
|
|
105
|
+
try {
|
|
106
|
+
let dirent;
|
|
107
|
+
while ((dirent = dir.readSync()) !== null) {
|
|
108
|
+
copyDirItem(dirent.name, src, dest, opts);
|
|
109
|
+
}
|
|
110
|
+
} finally {
|
|
111
|
+
dir.closeSync();
|
|
112
|
+
}
|
|
107
113
|
}
|
|
108
114
|
function copyDirItem(item, src, dest, opts) {
|
|
109
115
|
const srcItem = path.join(src, item);
|
|
@@ -155,14 +161,14 @@
|
|
|
155
161
|
}
|
|
156
162
|
module.exports = copySync;
|
|
157
163
|
},
|
|
158
|
-
|
|
164
|
+
918: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
159
165
|
"use strict";
|
|
160
|
-
const fs = __nccwpck_require__(
|
|
161
|
-
const path = __nccwpck_require__(
|
|
162
|
-
const { mkdirs } = __nccwpck_require__(
|
|
163
|
-
const { pathExists } = __nccwpck_require__(
|
|
164
|
-
const { utimesMillis } = __nccwpck_require__(
|
|
165
|
-
const stat = __nccwpck_require__(
|
|
166
|
+
const fs = __nccwpck_require__(389);
|
|
167
|
+
const path = __nccwpck_require__(928);
|
|
168
|
+
const { mkdirs } = __nccwpck_require__(90);
|
|
169
|
+
const { pathExists } = __nccwpck_require__(812);
|
|
170
|
+
const { utimesMillis } = __nccwpck_require__(847);
|
|
171
|
+
const stat = __nccwpck_require__(106);
|
|
166
172
|
async function copy(src, dest, opts = {}) {
|
|
167
173
|
if (typeof opts === "function") {
|
|
168
174
|
opts = { filter: opts };
|
|
@@ -246,22 +252,23 @@
|
|
|
246
252
|
if (!destStat) {
|
|
247
253
|
await fs.mkdir(dest);
|
|
248
254
|
}
|
|
249
|
-
const
|
|
250
|
-
await
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
255
|
+
const promises = [];
|
|
256
|
+
for await (const item of await fs.opendir(src)) {
|
|
257
|
+
const srcItem = path.join(src, item.name);
|
|
258
|
+
const destItem = path.join(dest, item.name);
|
|
259
|
+
promises.push(
|
|
260
|
+
runFilter(srcItem, destItem, opts).then((include) => {
|
|
261
|
+
if (include) {
|
|
262
|
+
return stat
|
|
263
|
+
.checkPaths(srcItem, destItem, "copy", opts)
|
|
264
|
+
.then(({ destStat }) =>
|
|
265
|
+
getStatsAndPerformCopy(destStat, srcItem, destItem, opts),
|
|
266
|
+
);
|
|
267
|
+
}
|
|
268
|
+
}),
|
|
269
|
+
);
|
|
270
|
+
}
|
|
271
|
+
await Promise.all(promises);
|
|
265
272
|
if (!destStat) {
|
|
266
273
|
await fs.chmod(dest, srcStat.mode);
|
|
267
274
|
}
|
|
@@ -300,21 +307,21 @@
|
|
|
300
307
|
}
|
|
301
308
|
module.exports = copy;
|
|
302
309
|
},
|
|
303
|
-
|
|
310
|
+
51: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
304
311
|
"use strict";
|
|
305
|
-
const u = __nccwpck_require__(
|
|
312
|
+
const u = __nccwpck_require__(327).fromPromise;
|
|
306
313
|
module.exports = {
|
|
307
|
-
copy: u(__nccwpck_require__(
|
|
308
|
-
copySync: __nccwpck_require__(
|
|
314
|
+
copy: u(__nccwpck_require__(918)),
|
|
315
|
+
copySync: __nccwpck_require__(568),
|
|
309
316
|
};
|
|
310
317
|
},
|
|
311
|
-
|
|
318
|
+
43: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
312
319
|
"use strict";
|
|
313
|
-
const u = __nccwpck_require__(
|
|
314
|
-
const fs = __nccwpck_require__(
|
|
315
|
-
const path = __nccwpck_require__(
|
|
316
|
-
const mkdir = __nccwpck_require__(
|
|
317
|
-
const remove = __nccwpck_require__(
|
|
320
|
+
const u = __nccwpck_require__(327).fromPromise;
|
|
321
|
+
const fs = __nccwpck_require__(389);
|
|
322
|
+
const path = __nccwpck_require__(928);
|
|
323
|
+
const mkdir = __nccwpck_require__(90);
|
|
324
|
+
const remove = __nccwpck_require__(730);
|
|
318
325
|
const emptyDir = u(async function emptyDir(dir) {
|
|
319
326
|
let items;
|
|
320
327
|
try {
|
|
@@ -345,12 +352,12 @@
|
|
|
345
352
|
emptydir: emptyDir,
|
|
346
353
|
};
|
|
347
354
|
},
|
|
348
|
-
|
|
355
|
+
868: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
349
356
|
"use strict";
|
|
350
|
-
const u = __nccwpck_require__(
|
|
351
|
-
const path = __nccwpck_require__(
|
|
352
|
-
const fs = __nccwpck_require__(
|
|
353
|
-
const mkdir = __nccwpck_require__(
|
|
357
|
+
const u = __nccwpck_require__(327).fromPromise;
|
|
358
|
+
const path = __nccwpck_require__(928);
|
|
359
|
+
const fs = __nccwpck_require__(389);
|
|
360
|
+
const mkdir = __nccwpck_require__(90);
|
|
354
361
|
async function createFile(file) {
|
|
355
362
|
let stats;
|
|
356
363
|
try {
|
|
@@ -395,11 +402,11 @@
|
|
|
395
402
|
}
|
|
396
403
|
module.exports = { createFile: u(createFile), createFileSync };
|
|
397
404
|
},
|
|
398
|
-
|
|
405
|
+
524: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
399
406
|
"use strict";
|
|
400
|
-
const { createFile, createFileSync } = __nccwpck_require__(
|
|
401
|
-
const { createLink, createLinkSync } = __nccwpck_require__(
|
|
402
|
-
const { createSymlink, createSymlinkSync } = __nccwpck_require__(
|
|
407
|
+
const { createFile, createFileSync } = __nccwpck_require__(868);
|
|
408
|
+
const { createLink, createLinkSync } = __nccwpck_require__(366);
|
|
409
|
+
const { createSymlink, createSymlinkSync } = __nccwpck_require__(735);
|
|
403
410
|
module.exports = {
|
|
404
411
|
createFile,
|
|
405
412
|
createFileSync,
|
|
@@ -415,14 +422,14 @@
|
|
|
415
422
|
ensureSymlinkSync: createSymlinkSync,
|
|
416
423
|
};
|
|
417
424
|
},
|
|
418
|
-
|
|
425
|
+
366: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
419
426
|
"use strict";
|
|
420
|
-
const u = __nccwpck_require__(
|
|
421
|
-
const path = __nccwpck_require__(
|
|
422
|
-
const fs = __nccwpck_require__(
|
|
423
|
-
const mkdir = __nccwpck_require__(
|
|
424
|
-
const { pathExists } = __nccwpck_require__(
|
|
425
|
-
const { areIdentical } = __nccwpck_require__(
|
|
427
|
+
const u = __nccwpck_require__(327).fromPromise;
|
|
428
|
+
const path = __nccwpck_require__(928);
|
|
429
|
+
const fs = __nccwpck_require__(389);
|
|
430
|
+
const mkdir = __nccwpck_require__(90);
|
|
431
|
+
const { pathExists } = __nccwpck_require__(812);
|
|
432
|
+
const { areIdentical } = __nccwpck_require__(106);
|
|
426
433
|
async function createLink(srcpath, dstpath) {
|
|
427
434
|
let dstStat;
|
|
428
435
|
try {
|
|
@@ -463,12 +470,12 @@
|
|
|
463
470
|
}
|
|
464
471
|
module.exports = { createLink: u(createLink), createLinkSync };
|
|
465
472
|
},
|
|
466
|
-
|
|
473
|
+
850: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
467
474
|
"use strict";
|
|
468
|
-
const path = __nccwpck_require__(
|
|
469
|
-
const fs = __nccwpck_require__(
|
|
470
|
-
const { pathExists } = __nccwpck_require__(
|
|
471
|
-
const u = __nccwpck_require__(
|
|
475
|
+
const path = __nccwpck_require__(928);
|
|
476
|
+
const fs = __nccwpck_require__(389);
|
|
477
|
+
const { pathExists } = __nccwpck_require__(812);
|
|
478
|
+
const u = __nccwpck_require__(327).fromPromise;
|
|
472
479
|
async function symlinkPaths(srcpath, dstpath) {
|
|
473
480
|
if (path.isAbsolute(srcpath)) {
|
|
474
481
|
try {
|
|
@@ -511,10 +518,10 @@
|
|
|
511
518
|
}
|
|
512
519
|
module.exports = { symlinkPaths: u(symlinkPaths), symlinkPathsSync };
|
|
513
520
|
},
|
|
514
|
-
|
|
521
|
+
84: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
515
522
|
"use strict";
|
|
516
|
-
const fs = __nccwpck_require__(
|
|
517
|
-
const u = __nccwpck_require__(
|
|
523
|
+
const fs = __nccwpck_require__(389);
|
|
524
|
+
const u = __nccwpck_require__(327).fromPromise;
|
|
518
525
|
async function symlinkType(srcpath, type) {
|
|
519
526
|
if (type) return type;
|
|
520
527
|
let stats;
|
|
@@ -537,16 +544,16 @@
|
|
|
537
544
|
}
|
|
538
545
|
module.exports = { symlinkType: u(symlinkType), symlinkTypeSync };
|
|
539
546
|
},
|
|
540
|
-
|
|
547
|
+
735: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
541
548
|
"use strict";
|
|
542
|
-
const u = __nccwpck_require__(
|
|
543
|
-
const path = __nccwpck_require__(
|
|
544
|
-
const fs = __nccwpck_require__(
|
|
545
|
-
const { mkdirs, mkdirsSync } = __nccwpck_require__(
|
|
546
|
-
const { symlinkPaths, symlinkPathsSync } = __nccwpck_require__(
|
|
547
|
-
const { symlinkType, symlinkTypeSync } = __nccwpck_require__(
|
|
548
|
-
const { pathExists } = __nccwpck_require__(
|
|
549
|
-
const { areIdentical } = __nccwpck_require__(
|
|
549
|
+
const u = __nccwpck_require__(327).fromPromise;
|
|
550
|
+
const path = __nccwpck_require__(928);
|
|
551
|
+
const fs = __nccwpck_require__(389);
|
|
552
|
+
const { mkdirs, mkdirsSync } = __nccwpck_require__(90);
|
|
553
|
+
const { symlinkPaths, symlinkPathsSync } = __nccwpck_require__(850);
|
|
554
|
+
const { symlinkType, symlinkTypeSync } = __nccwpck_require__(84);
|
|
555
|
+
const { pathExists } = __nccwpck_require__(812);
|
|
556
|
+
const { areIdentical } = __nccwpck_require__(106);
|
|
550
557
|
async function createSymlink(srcpath, dstpath, type) {
|
|
551
558
|
let stats;
|
|
552
559
|
try {
|
|
@@ -589,10 +596,10 @@
|
|
|
589
596
|
}
|
|
590
597
|
module.exports = { createSymlink: u(createSymlink), createSymlinkSync };
|
|
591
598
|
},
|
|
592
|
-
|
|
599
|
+
389: (__unused_webpack_module, exports, __nccwpck_require__) => {
|
|
593
600
|
"use strict";
|
|
594
|
-
const u = __nccwpck_require__(
|
|
595
|
-
const fs = __nccwpck_require__(
|
|
601
|
+
const u = __nccwpck_require__(327).fromCallback;
|
|
602
|
+
const fs = __nccwpck_require__(551);
|
|
596
603
|
const api = [
|
|
597
604
|
"access",
|
|
598
605
|
"appendFile",
|
|
@@ -600,6 +607,7 @@
|
|
|
600
607
|
"chown",
|
|
601
608
|
"close",
|
|
602
609
|
"copyFile",
|
|
610
|
+
"cp",
|
|
603
611
|
"fchmod",
|
|
604
612
|
"fchown",
|
|
605
613
|
"fdatasync",
|
|
@@ -607,8 +615,10 @@
|
|
|
607
615
|
"fsync",
|
|
608
616
|
"ftruncate",
|
|
609
617
|
"futimes",
|
|
618
|
+
"glob",
|
|
610
619
|
"lchmod",
|
|
611
620
|
"lchown",
|
|
621
|
+
"lutimes",
|
|
612
622
|
"link",
|
|
613
623
|
"lstat",
|
|
614
624
|
"mkdir",
|
|
@@ -623,6 +633,7 @@
|
|
|
623
633
|
"rm",
|
|
624
634
|
"rmdir",
|
|
625
635
|
"stat",
|
|
636
|
+
"statfs",
|
|
626
637
|
"symlink",
|
|
627
638
|
"truncate",
|
|
628
639
|
"unlink",
|
|
@@ -700,27 +711,27 @@
|
|
|
700
711
|
);
|
|
701
712
|
}
|
|
702
713
|
},
|
|
703
|
-
|
|
714
|
+
977: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
704
715
|
"use strict";
|
|
705
716
|
module.exports = {
|
|
706
|
-
...__nccwpck_require__(
|
|
707
|
-
...__nccwpck_require__(
|
|
708
|
-
...__nccwpck_require__(
|
|
709
|
-
...__nccwpck_require__(
|
|
710
|
-
...__nccwpck_require__(
|
|
711
|
-
...__nccwpck_require__(
|
|
712
|
-
...__nccwpck_require__(
|
|
713
|
-
...__nccwpck_require__(
|
|
714
|
-
...__nccwpck_require__(
|
|
715
|
-
...__nccwpck_require__(
|
|
717
|
+
...__nccwpck_require__(389),
|
|
718
|
+
...__nccwpck_require__(51),
|
|
719
|
+
...__nccwpck_require__(43),
|
|
720
|
+
...__nccwpck_require__(524),
|
|
721
|
+
...__nccwpck_require__(916),
|
|
722
|
+
...__nccwpck_require__(90),
|
|
723
|
+
...__nccwpck_require__(251),
|
|
724
|
+
...__nccwpck_require__(692),
|
|
725
|
+
...__nccwpck_require__(812),
|
|
726
|
+
...__nccwpck_require__(730),
|
|
716
727
|
};
|
|
717
728
|
},
|
|
718
|
-
|
|
729
|
+
916: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
719
730
|
"use strict";
|
|
720
|
-
const u = __nccwpck_require__(
|
|
721
|
-
const jsonFile = __nccwpck_require__(
|
|
722
|
-
jsonFile.outputJson = u(__nccwpck_require__(
|
|
723
|
-
jsonFile.outputJsonSync = __nccwpck_require__(
|
|
731
|
+
const u = __nccwpck_require__(327).fromPromise;
|
|
732
|
+
const jsonFile = __nccwpck_require__(330);
|
|
733
|
+
jsonFile.outputJson = u(__nccwpck_require__(238));
|
|
734
|
+
jsonFile.outputJsonSync = __nccwpck_require__(72);
|
|
724
735
|
jsonFile.outputJSON = jsonFile.outputJson;
|
|
725
736
|
jsonFile.outputJSONSync = jsonFile.outputJsonSync;
|
|
726
737
|
jsonFile.writeJSON = jsonFile.writeJson;
|
|
@@ -729,9 +740,9 @@
|
|
|
729
740
|
jsonFile.readJSONSync = jsonFile.readJsonSync;
|
|
730
741
|
module.exports = jsonFile;
|
|
731
742
|
},
|
|
732
|
-
|
|
743
|
+
330: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
733
744
|
"use strict";
|
|
734
|
-
const jsonFile = __nccwpck_require__(
|
|
745
|
+
const jsonFile = __nccwpck_require__(535);
|
|
735
746
|
module.exports = {
|
|
736
747
|
readJson: jsonFile.readFile,
|
|
737
748
|
readJsonSync: jsonFile.readFileSync,
|
|
@@ -739,30 +750,30 @@
|
|
|
739
750
|
writeJsonSync: jsonFile.writeFileSync,
|
|
740
751
|
};
|
|
741
752
|
},
|
|
742
|
-
|
|
753
|
+
72: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
743
754
|
"use strict";
|
|
744
|
-
const { stringify } = __nccwpck_require__(
|
|
745
|
-
const { outputFileSync } = __nccwpck_require__(
|
|
755
|
+
const { stringify } = __nccwpck_require__(306);
|
|
756
|
+
const { outputFileSync } = __nccwpck_require__(692);
|
|
746
757
|
function outputJsonSync(file, data, options) {
|
|
747
758
|
const str = stringify(data, options);
|
|
748
759
|
outputFileSync(file, str, options);
|
|
749
760
|
}
|
|
750
761
|
module.exports = outputJsonSync;
|
|
751
762
|
},
|
|
752
|
-
|
|
763
|
+
238: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
753
764
|
"use strict";
|
|
754
|
-
const { stringify } = __nccwpck_require__(
|
|
755
|
-
const { outputFile } = __nccwpck_require__(
|
|
765
|
+
const { stringify } = __nccwpck_require__(306);
|
|
766
|
+
const { outputFile } = __nccwpck_require__(692);
|
|
756
767
|
async function outputJson(file, data, options = {}) {
|
|
757
768
|
const str = stringify(data, options);
|
|
758
769
|
await outputFile(file, str, options);
|
|
759
770
|
}
|
|
760
771
|
module.exports = outputJson;
|
|
761
772
|
},
|
|
762
|
-
|
|
773
|
+
90: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
763
774
|
"use strict";
|
|
764
|
-
const u = __nccwpck_require__(
|
|
765
|
-
const { makeDir: _makeDir, makeDirSync } = __nccwpck_require__(
|
|
775
|
+
const u = __nccwpck_require__(327).fromPromise;
|
|
776
|
+
const { makeDir: _makeDir, makeDirSync } = __nccwpck_require__(904);
|
|
766
777
|
const makeDir = u(_makeDir);
|
|
767
778
|
module.exports = {
|
|
768
779
|
mkdirs: makeDir,
|
|
@@ -773,10 +784,10 @@
|
|
|
773
784
|
ensureDirSync: makeDirSync,
|
|
774
785
|
};
|
|
775
786
|
},
|
|
776
|
-
|
|
787
|
+
904: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
777
788
|
"use strict";
|
|
778
|
-
const fs = __nccwpck_require__(
|
|
779
|
-
const { checkPath } = __nccwpck_require__(
|
|
789
|
+
const fs = __nccwpck_require__(389);
|
|
790
|
+
const { checkPath } = __nccwpck_require__(963);
|
|
780
791
|
const getMode = (options) => {
|
|
781
792
|
const defaults = { mode: 511 };
|
|
782
793
|
if (typeof options === "number") return options;
|
|
@@ -791,9 +802,9 @@
|
|
|
791
802
|
return fs.mkdirSync(dir, { mode: getMode(options), recursive: true });
|
|
792
803
|
};
|
|
793
804
|
},
|
|
794
|
-
|
|
805
|
+
963: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
795
806
|
"use strict";
|
|
796
|
-
const path = __nccwpck_require__(
|
|
807
|
+
const path = __nccwpck_require__(928);
|
|
797
808
|
module.exports.checkPath = function checkPath(pth) {
|
|
798
809
|
if (process.platform === "win32") {
|
|
799
810
|
const pathHasInvalidWinCharacters = /[<>:"|?*]/.test(
|
|
@@ -807,22 +818,22 @@
|
|
|
807
818
|
}
|
|
808
819
|
};
|
|
809
820
|
},
|
|
810
|
-
|
|
821
|
+
251: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
811
822
|
"use strict";
|
|
812
|
-
const u = __nccwpck_require__(
|
|
823
|
+
const u = __nccwpck_require__(327).fromPromise;
|
|
813
824
|
module.exports = {
|
|
814
|
-
move: u(__nccwpck_require__(
|
|
815
|
-
moveSync: __nccwpck_require__(
|
|
825
|
+
move: u(__nccwpck_require__(758)),
|
|
826
|
+
moveSync: __nccwpck_require__(640),
|
|
816
827
|
};
|
|
817
828
|
},
|
|
818
|
-
|
|
829
|
+
640: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
819
830
|
"use strict";
|
|
820
|
-
const fs = __nccwpck_require__(
|
|
821
|
-
const path = __nccwpck_require__(
|
|
822
|
-
const copySync = __nccwpck_require__(
|
|
823
|
-
const removeSync = __nccwpck_require__(
|
|
824
|
-
const mkdirpSync = __nccwpck_require__(
|
|
825
|
-
const stat = __nccwpck_require__(
|
|
831
|
+
const fs = __nccwpck_require__(551);
|
|
832
|
+
const path = __nccwpck_require__(928);
|
|
833
|
+
const copySync = __nccwpck_require__(51).copySync;
|
|
834
|
+
const removeSync = __nccwpck_require__(730).removeSync;
|
|
835
|
+
const mkdirpSync = __nccwpck_require__(90).mkdirpSync;
|
|
836
|
+
const stat = __nccwpck_require__(106);
|
|
826
837
|
function moveSync(src, dest, opts) {
|
|
827
838
|
opts = opts || {};
|
|
828
839
|
const overwrite = opts.overwrite || opts.clobber || false;
|
|
@@ -869,15 +880,15 @@
|
|
|
869
880
|
}
|
|
870
881
|
module.exports = moveSync;
|
|
871
882
|
},
|
|
872
|
-
|
|
883
|
+
758: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
873
884
|
"use strict";
|
|
874
|
-
const fs = __nccwpck_require__(
|
|
875
|
-
const path = __nccwpck_require__(
|
|
876
|
-
const { copy } = __nccwpck_require__(
|
|
877
|
-
const { remove } = __nccwpck_require__(
|
|
878
|
-
const { mkdirp } = __nccwpck_require__(
|
|
879
|
-
const { pathExists } = __nccwpck_require__(
|
|
880
|
-
const stat = __nccwpck_require__(
|
|
885
|
+
const fs = __nccwpck_require__(389);
|
|
886
|
+
const path = __nccwpck_require__(928);
|
|
887
|
+
const { copy } = __nccwpck_require__(51);
|
|
888
|
+
const { remove } = __nccwpck_require__(730);
|
|
889
|
+
const { mkdirp } = __nccwpck_require__(90);
|
|
890
|
+
const { pathExists } = __nccwpck_require__(812);
|
|
891
|
+
const stat = __nccwpck_require__(106);
|
|
881
892
|
async function move(src, dest, opts = {}) {
|
|
882
893
|
const overwrite = opts.overwrite || opts.clobber || false;
|
|
883
894
|
const { srcStat, isChangingCase = false } = await stat.checkPaths(
|
|
@@ -922,13 +933,13 @@
|
|
|
922
933
|
}
|
|
923
934
|
module.exports = move;
|
|
924
935
|
},
|
|
925
|
-
|
|
936
|
+
692: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
926
937
|
"use strict";
|
|
927
|
-
const u = __nccwpck_require__(
|
|
928
|
-
const fs = __nccwpck_require__(
|
|
929
|
-
const path = __nccwpck_require__(
|
|
930
|
-
const mkdir = __nccwpck_require__(
|
|
931
|
-
const pathExists = __nccwpck_require__(
|
|
938
|
+
const u = __nccwpck_require__(327).fromPromise;
|
|
939
|
+
const fs = __nccwpck_require__(389);
|
|
940
|
+
const path = __nccwpck_require__(928);
|
|
941
|
+
const mkdir = __nccwpck_require__(90);
|
|
942
|
+
const pathExists = __nccwpck_require__(812).pathExists;
|
|
932
943
|
async function outputFile(file, data, encoding = "utf-8") {
|
|
933
944
|
const dir = path.dirname(file);
|
|
934
945
|
if (!(await pathExists(dir))) {
|
|
@@ -945,10 +956,10 @@
|
|
|
945
956
|
}
|
|
946
957
|
module.exports = { outputFile: u(outputFile), outputFileSync };
|
|
947
958
|
},
|
|
948
|
-
|
|
959
|
+
812: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
949
960
|
"use strict";
|
|
950
|
-
const u = __nccwpck_require__(
|
|
951
|
-
const fs = __nccwpck_require__(
|
|
961
|
+
const u = __nccwpck_require__(327).fromPromise;
|
|
962
|
+
const fs = __nccwpck_require__(389);
|
|
952
963
|
function pathExists(path) {
|
|
953
964
|
return fs
|
|
954
965
|
.access(path)
|
|
@@ -960,10 +971,10 @@
|
|
|
960
971
|
pathExistsSync: fs.existsSync,
|
|
961
972
|
};
|
|
962
973
|
},
|
|
963
|
-
|
|
974
|
+
730: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
964
975
|
"use strict";
|
|
965
|
-
const fs = __nccwpck_require__(
|
|
966
|
-
const u = __nccwpck_require__(
|
|
976
|
+
const fs = __nccwpck_require__(551);
|
|
977
|
+
const u = __nccwpck_require__(327).fromCallback;
|
|
967
978
|
function remove(path, callback) {
|
|
968
979
|
fs.rm(path, { recursive: true, force: true }, callback);
|
|
969
980
|
}
|
|
@@ -972,11 +983,11 @@
|
|
|
972
983
|
}
|
|
973
984
|
module.exports = { remove: u(remove), removeSync };
|
|
974
985
|
},
|
|
975
|
-
|
|
986
|
+
106: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
976
987
|
"use strict";
|
|
977
|
-
const fs = __nccwpck_require__(
|
|
978
|
-
const path = __nccwpck_require__(
|
|
979
|
-
const u = __nccwpck_require__(
|
|
988
|
+
const fs = __nccwpck_require__(389);
|
|
989
|
+
const path = __nccwpck_require__(928);
|
|
990
|
+
const u = __nccwpck_require__(327).fromPromise;
|
|
980
991
|
function getStats(src, dest, opts) {
|
|
981
992
|
const statFunc = opts.dereference
|
|
982
993
|
? (file) => fs.stat(file, { bigint: true })
|
|
@@ -1136,10 +1147,10 @@
|
|
|
1136
1147
|
areIdentical,
|
|
1137
1148
|
};
|
|
1138
1149
|
},
|
|
1139
|
-
|
|
1150
|
+
847: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
1140
1151
|
"use strict";
|
|
1141
|
-
const fs = __nccwpck_require__(
|
|
1142
|
-
const u = __nccwpck_require__(
|
|
1152
|
+
const fs = __nccwpck_require__(389);
|
|
1153
|
+
const u = __nccwpck_require__(327).fromPromise;
|
|
1143
1154
|
async function utimesMillis(path, atime, mtime) {
|
|
1144
1155
|
const fd = await fs.open(path, "r+");
|
|
1145
1156
|
let closeErr = null;
|
|
@@ -1163,7 +1174,7 @@
|
|
|
1163
1174
|
}
|
|
1164
1175
|
module.exports = { utimesMillis: u(utimesMillis), utimesMillisSync };
|
|
1165
1176
|
},
|
|
1166
|
-
|
|
1177
|
+
403: (module) => {
|
|
1167
1178
|
"use strict";
|
|
1168
1179
|
module.exports = clone;
|
|
1169
1180
|
var getPrototypeOf =
|
|
@@ -1186,12 +1197,12 @@
|
|
|
1186
1197
|
return copy;
|
|
1187
1198
|
}
|
|
1188
1199
|
},
|
|
1189
|
-
|
|
1190
|
-
var fs = __nccwpck_require__(
|
|
1191
|
-
var polyfills = __nccwpck_require__(
|
|
1192
|
-
var legacy = __nccwpck_require__(
|
|
1193
|
-
var clone = __nccwpck_require__(
|
|
1194
|
-
var util = __nccwpck_require__(
|
|
1200
|
+
551: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
1201
|
+
var fs = __nccwpck_require__(896);
|
|
1202
|
+
var polyfills = __nccwpck_require__(538);
|
|
1203
|
+
var legacy = __nccwpck_require__(611);
|
|
1204
|
+
var clone = __nccwpck_require__(403);
|
|
1205
|
+
var util = __nccwpck_require__(23);
|
|
1195
1206
|
var gracefulQueue;
|
|
1196
1207
|
var previousSymbol;
|
|
1197
1208
|
if (typeof Symbol === "function" && typeof Symbol.for === "function") {
|
|
@@ -1245,7 +1256,7 @@
|
|
|
1245
1256
|
if (/\bgfs4\b/i.test(process.env.NODE_DEBUG || "")) {
|
|
1246
1257
|
process.on("exit", function () {
|
|
1247
1258
|
debug(fs[gracefulQueue]);
|
|
1248
|
-
__nccwpck_require__(
|
|
1259
|
+
__nccwpck_require__(613).equal(fs[gracefulQueue].length, 0);
|
|
1249
1260
|
});
|
|
1250
1261
|
}
|
|
1251
1262
|
}
|
|
@@ -1564,8 +1575,8 @@
|
|
|
1564
1575
|
}
|
|
1565
1576
|
}
|
|
1566
1577
|
},
|
|
1567
|
-
|
|
1568
|
-
var Stream = __nccwpck_require__(
|
|
1578
|
+
611: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
1579
|
+
var Stream = __nccwpck_require__(203).Stream;
|
|
1569
1580
|
module.exports = legacy;
|
|
1570
1581
|
function legacy(fs) {
|
|
1571
1582
|
return { ReadStream, WriteStream };
|
|
@@ -1661,8 +1672,8 @@
|
|
|
1661
1672
|
}
|
|
1662
1673
|
}
|
|
1663
1674
|
},
|
|
1664
|
-
|
|
1665
|
-
var constants = __nccwpck_require__(
|
|
1675
|
+
538: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
1676
|
+
var constants = __nccwpck_require__(140);
|
|
1666
1677
|
var origCwd = process.cwd;
|
|
1667
1678
|
var cwd = null;
|
|
1668
1679
|
var platform = process.env.GRACEFUL_FS_PLATFORM || process.platform;
|
|
@@ -1982,15 +1993,15 @@
|
|
|
1982
1993
|
}
|
|
1983
1994
|
}
|
|
1984
1995
|
},
|
|
1985
|
-
|
|
1996
|
+
535: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
1986
1997
|
let _fs;
|
|
1987
1998
|
try {
|
|
1988
|
-
_fs = __nccwpck_require__(
|
|
1999
|
+
_fs = __nccwpck_require__(551);
|
|
1989
2000
|
} catch (_) {
|
|
1990
|
-
_fs = __nccwpck_require__(
|
|
2001
|
+
_fs = __nccwpck_require__(896);
|
|
1991
2002
|
}
|
|
1992
|
-
const universalify = __nccwpck_require__(
|
|
1993
|
-
const { stringify, stripBom } = __nccwpck_require__(
|
|
2003
|
+
const universalify = __nccwpck_require__(327);
|
|
2004
|
+
const { stringify, stripBom } = __nccwpck_require__(306);
|
|
1994
2005
|
async function _readFile(file, options = {}) {
|
|
1995
2006
|
if (typeof options === "string") {
|
|
1996
2007
|
options = { encoding: options };
|
|
@@ -2046,7 +2057,7 @@
|
|
|
2046
2057
|
const jsonfile = { readFile, readFileSync, writeFile, writeFileSync };
|
|
2047
2058
|
module.exports = jsonfile;
|
|
2048
2059
|
},
|
|
2049
|
-
|
|
2060
|
+
306: (module) => {
|
|
2050
2061
|
function stringify(
|
|
2051
2062
|
obj,
|
|
2052
2063
|
{ EOL = "\n", finalEOL = true, replacer = null, spaces } = {},
|
|
@@ -2061,7 +2072,7 @@
|
|
|
2061
2072
|
}
|
|
2062
2073
|
module.exports = { stringify, stripBom };
|
|
2063
2074
|
},
|
|
2064
|
-
|
|
2075
|
+
327: (__unused_webpack_module, exports) => {
|
|
2065
2076
|
"use strict";
|
|
2066
2077
|
exports.fromCallback = function (fn) {
|
|
2067
2078
|
return Object.defineProperty(
|
|
@@ -2096,27 +2107,27 @@
|
|
|
2096
2107
|
);
|
|
2097
2108
|
};
|
|
2098
2109
|
},
|
|
2099
|
-
|
|
2110
|
+
613: (module) => {
|
|
2100
2111
|
"use strict";
|
|
2101
2112
|
module.exports = require("assert");
|
|
2102
2113
|
},
|
|
2103
|
-
|
|
2114
|
+
140: (module) => {
|
|
2104
2115
|
"use strict";
|
|
2105
2116
|
module.exports = require("constants");
|
|
2106
2117
|
},
|
|
2107
|
-
|
|
2118
|
+
896: (module) => {
|
|
2108
2119
|
"use strict";
|
|
2109
2120
|
module.exports = require("fs");
|
|
2110
2121
|
},
|
|
2111
|
-
|
|
2122
|
+
928: (module) => {
|
|
2112
2123
|
"use strict";
|
|
2113
2124
|
module.exports = require("path");
|
|
2114
2125
|
},
|
|
2115
|
-
|
|
2126
|
+
203: (module) => {
|
|
2116
2127
|
"use strict";
|
|
2117
2128
|
module.exports = require("stream");
|
|
2118
2129
|
},
|
|
2119
|
-
|
|
2130
|
+
23: (module) => {
|
|
2120
2131
|
"use strict";
|
|
2121
2132
|
module.exports = require("util");
|
|
2122
2133
|
},
|
|
@@ -2143,6 +2154,6 @@
|
|
|
2143
2154
|
}
|
|
2144
2155
|
if (typeof __nccwpck_require__ !== "undefined")
|
|
2145
2156
|
__nccwpck_require__.ab = __dirname + "/";
|
|
2146
|
-
var __webpack_exports__ = __nccwpck_require__(
|
|
2157
|
+
var __webpack_exports__ = __nccwpck_require__(977);
|
|
2147
2158
|
module.exports = __webpack_exports__;
|
|
2148
2159
|
})();
|