@rsbuild/core 1.4.15 → 1.5.0-beta.1

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.
@@ -1,745 +0,0 @@
1
- (() => {
2
- var __webpack_modules__ = {
3
- 920: (module, __unused_webpack_exports, __nccwpck_require__) => {
4
- const path = __nccwpck_require__(928);
5
- const fs = __nccwpck_require__(896);
6
- const os = __nccwpck_require__(857);
7
- const url = __nccwpck_require__(16);
8
- const fsReadFileAsync = fs.promises.readFile;
9
- function getDefaultSearchPlaces(name, sync) {
10
- return [
11
- "package.json",
12
- `.${name}rc.json`,
13
- `.${name}rc.js`,
14
- `.${name}rc.cjs`,
15
- ...(sync ? [] : [`.${name}rc.mjs`]),
16
- `.config/${name}rc`,
17
- `.config/${name}rc.json`,
18
- `.config/${name}rc.js`,
19
- `.config/${name}rc.cjs`,
20
- ...(sync ? [] : [`.config/${name}rc.mjs`]),
21
- `${name}.config.js`,
22
- `${name}.config.cjs`,
23
- ...(sync ? [] : [`${name}.config.mjs`]),
24
- ];
25
- }
26
- function parentDir(p) {
27
- return path.dirname(p) || path.sep;
28
- }
29
- const jsonLoader = (_, content) => JSON.parse(content);
30
- const requireFunc = true ? eval("require") : 0;
31
- const defaultLoadersSync = Object.freeze({
32
- ".js": requireFunc,
33
- ".json": requireFunc,
34
- ".cjs": requireFunc,
35
- noExt: jsonLoader,
36
- });
37
- module.exports.defaultLoadersSync = defaultLoadersSync;
38
- const dynamicImport = async (id) => {
39
- try {
40
- const fileUrl = url.pathToFileURL(id).href;
41
- const mod = await import(fileUrl);
42
- return mod.default;
43
- } catch (e) {
44
- try {
45
- return requireFunc(id);
46
- } catch (requireE) {
47
- if (
48
- requireE.code === "ERR_REQUIRE_ESM" ||
49
- (requireE instanceof SyntaxError &&
50
- requireE
51
- .toString()
52
- .includes("Cannot use import statement outside a module"))
53
- ) {
54
- throw e;
55
- }
56
- throw requireE;
57
- }
58
- }
59
- };
60
- const defaultLoaders = Object.freeze({
61
- ".js": dynamicImport,
62
- ".mjs": dynamicImport,
63
- ".cjs": dynamicImport,
64
- ".json": jsonLoader,
65
- noExt: jsonLoader,
66
- });
67
- module.exports.defaultLoaders = defaultLoaders;
68
- function getOptions(name, options, sync) {
69
- const conf = {
70
- stopDir: os.homedir(),
71
- searchPlaces: getDefaultSearchPlaces(name, sync),
72
- ignoreEmptySearchPlaces: true,
73
- cache: true,
74
- transform: (x) => x,
75
- packageProp: [name],
76
- ...options,
77
- loaders: {
78
- ...(sync ? defaultLoadersSync : defaultLoaders),
79
- ...options.loaders,
80
- },
81
- };
82
- conf.searchPlaces.forEach((place) => {
83
- const key = path.extname(place) || "noExt";
84
- const loader = conf.loaders[key];
85
- if (!loader) {
86
- throw new Error(`Missing loader for extension "${place}"`);
87
- }
88
- if (typeof loader !== "function") {
89
- throw new Error(
90
- `Loader for extension "${place}" is not a function: Received ${typeof loader}.`,
91
- );
92
- }
93
- });
94
- return conf;
95
- }
96
- function getPackageProp(props, obj) {
97
- if (typeof props === "string" && props in obj) return obj[props];
98
- return (
99
- (Array.isArray(props) ? props : props.split(".")).reduce(
100
- (acc, prop) => (acc === undefined ? acc : acc[prop]),
101
- obj,
102
- ) || null
103
- );
104
- }
105
- function validateFilePath(filepath) {
106
- if (!filepath) throw new Error("load must pass a non-empty string");
107
- }
108
- function validateLoader(loader, ext) {
109
- if (!loader)
110
- throw new Error(`No loader specified for extension "${ext}"`);
111
- if (typeof loader !== "function")
112
- throw new Error("loader is not a function");
113
- }
114
- const makeEmplace = (enableCache) => (c, filepath, res) => {
115
- if (enableCache) c.set(filepath, res);
116
- return res;
117
- };
118
- module.exports.lilconfig = function lilconfig(name, options) {
119
- const {
120
- ignoreEmptySearchPlaces,
121
- loaders,
122
- packageProp,
123
- searchPlaces,
124
- stopDir,
125
- transform,
126
- cache,
127
- } = getOptions(name, options ?? {}, false);
128
- const searchCache = new Map();
129
- const loadCache = new Map();
130
- const emplace = makeEmplace(cache);
131
- return {
132
- async search(searchFrom = process.cwd()) {
133
- const result = { config: null, filepath: "" };
134
- const visited = new Set();
135
- let dir = searchFrom;
136
- dirLoop: while (true) {
137
- if (cache) {
138
- const r = searchCache.get(dir);
139
- if (r !== undefined) {
140
- for (const p of visited) searchCache.set(p, r);
141
- return r;
142
- }
143
- visited.add(dir);
144
- }
145
- for (const searchPlace of searchPlaces) {
146
- const filepath = path.join(dir, searchPlace);
147
- try {
148
- await fs.promises.access(filepath);
149
- } catch {
150
- continue;
151
- }
152
- const content = String(await fsReadFileAsync(filepath));
153
- const loaderKey = path.extname(searchPlace) || "noExt";
154
- const loader = loaders[loaderKey];
155
- if (searchPlace === "package.json") {
156
- const pkg = await loader(filepath, content);
157
- const maybeConfig = getPackageProp(packageProp, pkg);
158
- if (maybeConfig != null) {
159
- result.config = maybeConfig;
160
- result.filepath = filepath;
161
- break dirLoop;
162
- }
163
- continue;
164
- }
165
- const isEmpty = content.trim() === "";
166
- if (isEmpty && ignoreEmptySearchPlaces) continue;
167
- if (isEmpty) {
168
- result.isEmpty = true;
169
- result.config = undefined;
170
- } else {
171
- validateLoader(loader, loaderKey);
172
- result.config = await loader(filepath, content);
173
- }
174
- result.filepath = filepath;
175
- break dirLoop;
176
- }
177
- if (dir === stopDir || dir === parentDir(dir)) break dirLoop;
178
- dir = parentDir(dir);
179
- }
180
- const transformed =
181
- result.filepath === "" && result.config === null
182
- ? transform(null)
183
- : transform(result);
184
- if (cache) {
185
- for (const p of visited) searchCache.set(p, transformed);
186
- }
187
- return transformed;
188
- },
189
- async load(filepath) {
190
- validateFilePath(filepath);
191
- const absPath = path.resolve(process.cwd(), filepath);
192
- if (cache && loadCache.has(absPath)) {
193
- return loadCache.get(absPath);
194
- }
195
- const { base, ext } = path.parse(absPath);
196
- const loaderKey = ext || "noExt";
197
- const loader = loaders[loaderKey];
198
- validateLoader(loader, loaderKey);
199
- const content = String(await fsReadFileAsync(absPath));
200
- if (base === "package.json") {
201
- const pkg = await loader(absPath, content);
202
- return emplace(
203
- loadCache,
204
- absPath,
205
- transform({
206
- config: getPackageProp(packageProp, pkg),
207
- filepath: absPath,
208
- }),
209
- );
210
- }
211
- const result = { config: null, filepath: absPath };
212
- const isEmpty = content.trim() === "";
213
- if (isEmpty && ignoreEmptySearchPlaces)
214
- return emplace(
215
- loadCache,
216
- absPath,
217
- transform({
218
- config: undefined,
219
- filepath: absPath,
220
- isEmpty: true,
221
- }),
222
- );
223
- result.config = isEmpty
224
- ? undefined
225
- : await loader(absPath, content);
226
- return emplace(
227
- loadCache,
228
- absPath,
229
- transform(
230
- isEmpty ? { ...result, isEmpty, config: undefined } : result,
231
- ),
232
- );
233
- },
234
- clearLoadCache() {
235
- if (cache) loadCache.clear();
236
- },
237
- clearSearchCache() {
238
- if (cache) searchCache.clear();
239
- },
240
- clearCaches() {
241
- if (cache) {
242
- loadCache.clear();
243
- searchCache.clear();
244
- }
245
- },
246
- };
247
- };
248
- module.exports.lilconfigSync = function lilconfigSync(name, options) {
249
- const {
250
- ignoreEmptySearchPlaces,
251
- loaders,
252
- packageProp,
253
- searchPlaces,
254
- stopDir,
255
- transform,
256
- cache,
257
- } = getOptions(name, options ?? {}, true);
258
- const searchCache = new Map();
259
- const loadCache = new Map();
260
- const emplace = makeEmplace(cache);
261
- return {
262
- search(searchFrom = process.cwd()) {
263
- const result = { config: null, filepath: "" };
264
- const visited = new Set();
265
- let dir = searchFrom;
266
- dirLoop: while (true) {
267
- if (cache) {
268
- const r = searchCache.get(dir);
269
- if (r !== undefined) {
270
- for (const p of visited) searchCache.set(p, r);
271
- return r;
272
- }
273
- visited.add(dir);
274
- }
275
- for (const searchPlace of searchPlaces) {
276
- const filepath = path.join(dir, searchPlace);
277
- try {
278
- fs.accessSync(filepath);
279
- } catch {
280
- continue;
281
- }
282
- const loaderKey = path.extname(searchPlace) || "noExt";
283
- const loader = loaders[loaderKey];
284
- const content = String(fs.readFileSync(filepath));
285
- if (searchPlace === "package.json") {
286
- const pkg = loader(filepath, content);
287
- const maybeConfig = getPackageProp(packageProp, pkg);
288
- if (maybeConfig != null) {
289
- result.config = maybeConfig;
290
- result.filepath = filepath;
291
- break dirLoop;
292
- }
293
- continue;
294
- }
295
- const isEmpty = content.trim() === "";
296
- if (isEmpty && ignoreEmptySearchPlaces) continue;
297
- if (isEmpty) {
298
- result.isEmpty = true;
299
- result.config = undefined;
300
- } else {
301
- validateLoader(loader, loaderKey);
302
- result.config = loader(filepath, content);
303
- }
304
- result.filepath = filepath;
305
- break dirLoop;
306
- }
307
- if (dir === stopDir || dir === parentDir(dir)) break dirLoop;
308
- dir = parentDir(dir);
309
- }
310
- const transformed =
311
- result.filepath === "" && result.config === null
312
- ? transform(null)
313
- : transform(result);
314
- if (cache) {
315
- for (const p of visited) searchCache.set(p, transformed);
316
- }
317
- return transformed;
318
- },
319
- load(filepath) {
320
- validateFilePath(filepath);
321
- const absPath = path.resolve(process.cwd(), filepath);
322
- if (cache && loadCache.has(absPath)) {
323
- return loadCache.get(absPath);
324
- }
325
- const { base, ext } = path.parse(absPath);
326
- const loaderKey = ext || "noExt";
327
- const loader = loaders[loaderKey];
328
- validateLoader(loader, loaderKey);
329
- const content = String(fs.readFileSync(absPath));
330
- if (base === "package.json") {
331
- const pkg = loader(absPath, content);
332
- return transform({
333
- config: getPackageProp(packageProp, pkg),
334
- filepath: absPath,
335
- });
336
- }
337
- const result = { config: null, filepath: absPath };
338
- const isEmpty = content.trim() === "";
339
- if (isEmpty && ignoreEmptySearchPlaces)
340
- return emplace(
341
- loadCache,
342
- absPath,
343
- transform({
344
- filepath: absPath,
345
- config: undefined,
346
- isEmpty: true,
347
- }),
348
- );
349
- result.config = isEmpty ? undefined : loader(absPath, content);
350
- return emplace(
351
- loadCache,
352
- absPath,
353
- transform(
354
- isEmpty ? { ...result, isEmpty, config: undefined } : result,
355
- ),
356
- );
357
- },
358
- clearLoadCache() {
359
- if (cache) loadCache.clear();
360
- },
361
- clearSearchCache() {
362
- if (cache) searchCache.clear();
363
- },
364
- clearCaches() {
365
- if (cache) {
366
- loadCache.clear();
367
- searchCache.clear();
368
- }
369
- },
370
- };
371
- };
372
- },
373
- 4: (module, __unused_webpack_exports, __nccwpck_require__) => {
374
- const { resolve } = __nccwpck_require__(760);
375
- const config = __nccwpck_require__(920);
376
- const loadOptions = __nccwpck_require__(842);
377
- const loadPlugins = __nccwpck_require__(348);
378
- const req = __nccwpck_require__(220);
379
- const interopRequireDefault = (obj) =>
380
- obj && obj.__esModule ? obj : { default: obj };
381
- async function processResult(ctx, result) {
382
- let file = result.filepath || "";
383
- let projectConfig = interopRequireDefault(result.config).default || {};
384
- if (typeof projectConfig === "function") {
385
- projectConfig = projectConfig(ctx);
386
- } else {
387
- projectConfig = Object.assign({}, projectConfig, ctx);
388
- }
389
- if (!projectConfig.plugins) {
390
- projectConfig.plugins = [];
391
- }
392
- let res = {
393
- file,
394
- options: await loadOptions(projectConfig, file),
395
- plugins: await loadPlugins(projectConfig, file),
396
- };
397
- delete projectConfig.plugins;
398
- return res;
399
- }
400
- function createContext(ctx) {
401
- ctx = Object.assign(
402
- { cwd: process.cwd(), env: process.env.NODE_ENV },
403
- ctx,
404
- );
405
- if (!ctx.env) {
406
- process.env.NODE_ENV = "development";
407
- }
408
- return ctx;
409
- }
410
- async function loader(filepath) {
411
- return req(filepath);
412
- }
413
- let yaml;
414
- async function yamlLoader(_, content) {
415
- if (!yaml) {
416
- try {
417
- yaml = await Promise.resolve().then(
418
- __nccwpck_require__.t.bind(__nccwpck_require__, 160, 23),
419
- );
420
- } catch (e) {
421
- throw new Error(
422
- `'yaml' is required for the YAML configuration files. Make sure it is installed\nError: ${e.message}`,
423
- );
424
- }
425
- }
426
- return yaml.parse(content);
427
- }
428
- const withLoaders = (options = {}) => {
429
- let moduleName = "postcss";
430
- return {
431
- ...options,
432
- loaders: {
433
- ...options.loaders,
434
- ".cjs": loader,
435
- ".cts": loader,
436
- ".js": loader,
437
- ".mjs": loader,
438
- ".mts": loader,
439
- ".ts": loader,
440
- ".yaml": yamlLoader,
441
- ".yml": yamlLoader,
442
- },
443
- searchPlaces: [
444
- ...(options.searchPlaces || []),
445
- "package.json",
446
- `.${moduleName}rc`,
447
- `.${moduleName}rc.json`,
448
- `.${moduleName}rc.yaml`,
449
- `.${moduleName}rc.yml`,
450
- `.${moduleName}rc.ts`,
451
- `.${moduleName}rc.cts`,
452
- `.${moduleName}rc.mts`,
453
- `.${moduleName}rc.js`,
454
- `.${moduleName}rc.cjs`,
455
- `.${moduleName}rc.mjs`,
456
- `${moduleName}.config.ts`,
457
- `${moduleName}.config.cts`,
458
- `${moduleName}.config.mts`,
459
- `${moduleName}.config.js`,
460
- `${moduleName}.config.cjs`,
461
- `${moduleName}.config.mjs`,
462
- ],
463
- };
464
- };
465
- function rc(ctx, path, options) {
466
- ctx = createContext(ctx);
467
- path = path ? resolve(path) : process.cwd();
468
- return config
469
- .lilconfig("postcss", withLoaders(options))
470
- .search(path)
471
- .then((result) => {
472
- if (!result) {
473
- throw new Error(`No PostCSS Config found in: ${path}`);
474
- }
475
- return processResult(ctx, result);
476
- });
477
- }
478
- /**
479
- * Autoload Config for PostCSS
480
- *
481
- * @author Michael Ciniawsky @michael-ciniawsky <michael.ciniawsky@gmail.com>
482
- * @license MIT
483
- *
484
- * @module postcss-load-config
485
- * @version 2.1.0
486
- *
487
- * @requires comsiconfig
488
- * @requires ./options
489
- * @requires ./plugins
490
- */ module.exports = rc;
491
- },
492
- 842: (module, __unused_webpack_exports, __nccwpck_require__) => {
493
- const req = __nccwpck_require__(220);
494
- async function options(config, file) {
495
- if (config.parser && typeof config.parser === "string") {
496
- try {
497
- config.parser = await req(config.parser, file);
498
- } catch (err) {
499
- throw new Error(
500
- `Loading PostCSS Parser failed: ${err.message}\n\n(@${file})`,
501
- );
502
- }
503
- }
504
- if (config.syntax && typeof config.syntax === "string") {
505
- try {
506
- config.syntax = await req(config.syntax, file);
507
- } catch (err) {
508
- throw new Error(
509
- `Loading PostCSS Syntax failed: ${err.message}\n\n(@${file})`,
510
- );
511
- }
512
- }
513
- if (config.stringifier && typeof config.stringifier === "string") {
514
- try {
515
- config.stringifier = await req(config.stringifier, file);
516
- } catch (err) {
517
- throw new Error(
518
- `Loading PostCSS Stringifier failed: ${err.message}\n\n(@${file})`,
519
- );
520
- }
521
- }
522
- return config;
523
- }
524
- module.exports = options;
525
- },
526
- 348: (module, __unused_webpack_exports, __nccwpck_require__) => {
527
- const req = __nccwpck_require__(220);
528
- async function load(plugin, options, file) {
529
- try {
530
- if (
531
- options === null ||
532
- options === undefined ||
533
- Object.keys(options).length === 0
534
- ) {
535
- return await req(plugin, file);
536
- } else {
537
- return (await req(plugin, file))(options);
538
- }
539
- } catch (err) {
540
- throw new Error(
541
- `Loading PostCSS Plugin failed: ${err.message}\n\n(@${file})`,
542
- );
543
- }
544
- }
545
- async function plugins(config, file) {
546
- let list = [];
547
- if (Array.isArray(config.plugins)) {
548
- list = config.plugins.filter(Boolean);
549
- } else {
550
- list = Object.entries(config.plugins)
551
- .filter(([, options]) => options !== false)
552
- .map(([plugin, options]) => load(plugin, options, file));
553
- list = await Promise.all(list);
554
- }
555
- if (list.length && list.length > 0) {
556
- list.forEach((plugin, i) => {
557
- if (plugin.default) {
558
- plugin = plugin.default;
559
- }
560
- if (plugin.postcss === true) {
561
- plugin = plugin();
562
- } else if (plugin.postcss) {
563
- plugin = plugin.postcss;
564
- }
565
- if (
566
- !(
567
- (typeof plugin === "object" && Array.isArray(plugin.plugins)) ||
568
- (typeof plugin === "object" && plugin.postcssPlugin) ||
569
- typeof plugin === "function"
570
- )
571
- ) {
572
- throw new TypeError(
573
- `Invalid PostCSS Plugin found at: plugins[${i}]\n\n(@${file})`,
574
- );
575
- }
576
- });
577
- }
578
- return list;
579
- }
580
- module.exports = plugins;
581
- },
582
- 220: (module, __unused_webpack_exports, __nccwpck_require__) => {
583
- const { createRequire } = __nccwpck_require__(995);
584
- const { pathToFileURL } = __nccwpck_require__(136);
585
- const TS_EXT_RE = /\.[mc]?ts$/;
586
- let tsx;
587
- let jiti;
588
- let importError = [];
589
- async function req(name, rootFile = __filename) {
590
- let url = createRequire(rootFile).resolve(name);
591
- try {
592
- return (await import(`${pathToFileURL(url)}?t=${Date.now()}`))
593
- .default;
594
- } catch (err) {
595
- if (!TS_EXT_RE.test(url)) {
596
- throw err;
597
- }
598
- }
599
- if (tsx === undefined) {
600
- try {
601
- tsx = await import("tsx/cjs/api");
602
- } catch (error) {
603
- importError.push(error);
604
- }
605
- }
606
- if (tsx) {
607
- let loaded = tsx.require(name, rootFile);
608
- return loaded && "__esModule" in loaded ? loaded.default : loaded;
609
- }
610
- if (jiti === undefined) {
611
- try {
612
- jiti = (await import("jiti")).default;
613
- } catch (error) {
614
- importError.push(error);
615
- }
616
- }
617
- if (jiti) {
618
- return jiti(rootFile, { interopDefault: true })(name);
619
- }
620
- throw new Error(
621
- `'tsx' or 'jiti' is required for the TypeScript configuration files. Make sure it is installed\nError: ${importError.map((error) => error.message).join("\n")}`,
622
- );
623
- }
624
- module.exports = req;
625
- },
626
- 896: (module) => {
627
- "use strict";
628
- module.exports = require("fs");
629
- },
630
- 995: (module) => {
631
- "use strict";
632
- module.exports = require("node:module");
633
- },
634
- 760: (module) => {
635
- "use strict";
636
- module.exports = require("node:path");
637
- },
638
- 136: (module) => {
639
- "use strict";
640
- module.exports = require("node:url");
641
- },
642
- 857: (module) => {
643
- "use strict";
644
- module.exports = require("os");
645
- },
646
- 928: (module) => {
647
- "use strict";
648
- module.exports = require("path");
649
- },
650
- 16: (module) => {
651
- "use strict";
652
- module.exports = require("url");
653
- },
654
- 160: (module) => {
655
- "use strict";
656
- module.exports = require("yaml");
657
- },
658
- };
659
- var __webpack_module_cache__ = {};
660
- function __nccwpck_require__(moduleId) {
661
- var cachedModule = __webpack_module_cache__[moduleId];
662
- if (cachedModule !== undefined) {
663
- return cachedModule.exports;
664
- }
665
- var module = (__webpack_module_cache__[moduleId] = { exports: {} });
666
- var threw = true;
667
- try {
668
- __webpack_modules__[moduleId](
669
- module,
670
- module.exports,
671
- __nccwpck_require__,
672
- );
673
- threw = false;
674
- } finally {
675
- if (threw) delete __webpack_module_cache__[moduleId];
676
- }
677
- return module.exports;
678
- }
679
- (() => {
680
- var getProto = Object.getPrototypeOf
681
- ? (obj) => Object.getPrototypeOf(obj)
682
- : (obj) => obj.__proto__;
683
- var leafPrototypes;
684
- __nccwpck_require__.t = function (value, mode) {
685
- if (mode & 1) value = this(value);
686
- if (mode & 8) return value;
687
- if (typeof value === "object" && value) {
688
- if (mode & 4 && value.__esModule) return value;
689
- if (mode & 16 && typeof value.then === "function") return value;
690
- }
691
- var ns = Object.create(null);
692
- __nccwpck_require__.r(ns);
693
- var def = {};
694
- leafPrototypes = leafPrototypes || [
695
- null,
696
- getProto({}),
697
- getProto([]),
698
- getProto(getProto),
699
- ];
700
- for (
701
- var current = mode & 2 && value;
702
- typeof current == "object" && !~leafPrototypes.indexOf(current);
703
- current = getProto(current)
704
- ) {
705
- Object.getOwnPropertyNames(current).forEach(
706
- (key) => (def[key] = () => value[key]),
707
- );
708
- }
709
- def["default"] = () => value;
710
- __nccwpck_require__.d(ns, def);
711
- return ns;
712
- };
713
- })();
714
- (() => {
715
- __nccwpck_require__.d = (exports, definition) => {
716
- for (var key in definition) {
717
- if (
718
- __nccwpck_require__.o(definition, key) &&
719
- !__nccwpck_require__.o(exports, key)
720
- ) {
721
- Object.defineProperty(exports, key, {
722
- enumerable: true,
723
- get: definition[key],
724
- });
725
- }
726
- }
727
- };
728
- })();
729
- (() => {
730
- __nccwpck_require__.o = (obj, prop) =>
731
- Object.prototype.hasOwnProperty.call(obj, prop);
732
- })();
733
- (() => {
734
- __nccwpck_require__.r = (exports) => {
735
- if (typeof Symbol !== "undefined" && Symbol.toStringTag) {
736
- Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
737
- }
738
- Object.defineProperty(exports, "__esModule", { value: true });
739
- };
740
- })();
741
- if (typeof __nccwpck_require__ !== "undefined")
742
- __nccwpck_require__.ab = __dirname + "/";
743
- var __webpack_exports__ = __nccwpck_require__(4);
744
- module.exports = __webpack_exports__;
745
- })();