@rstest/core 0.9.6 → 0.9.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/dist/4411.js CHANGED
@@ -1,7 +1,8 @@
1
1
  import "node:module";
2
2
  import promises from "node:fs/promises";
3
- import fs_0, * as __rspack_external_fs from "fs";
4
- import path_0, { basename, dirname, normalize, posix, relative as external_path_relative, resolve, sep } from "path";
3
+ import * as __rspack_external_node_fs_5ea92f0c from "node:fs";
4
+ import { readdir, readdirSync, realpath, realpathSync, stat as external_node_fs_stat, statSync } from "node:fs";
5
+ import { basename, dirname, isAbsolute, normalize, posix, relative as external_node_path_relative, resolve, sep } from "node:path";
5
6
  import { fileURLToPath } from "url";
6
7
  import { createRequire } from "module";
7
8
  import { __webpack_require__ } from "./0~rslib-runtime.js";
@@ -1658,7 +1659,7 @@ function joinPathWithRelativePath(root, options) {
1658
1659
  return function(filename, directoryPath) {
1659
1660
  const sameRoot = directoryPath.startsWith(root);
1660
1661
  if (sameRoot) return directoryPath.slice(root.length) + filename;
1661
- return convertSlashes(external_path_relative(root, directoryPath), options.pathSeparator) + options.pathSeparator + filename;
1662
+ return convertSlashes(external_node_path_relative(root, directoryPath), options.pathSeparator) + options.pathSeparator + filename;
1662
1663
  };
1663
1664
  }
1664
1665
  function joinPath(filename) {
@@ -1913,7 +1914,7 @@ var Walker = class {
1913
1914
  ""
1914
1915
  ].slice(0, 0),
1915
1916
  controller: new Aborter(),
1916
- fs: options.fs || __rspack_external_fs
1917
+ fs: options.fs || __rspack_external_node_fs_5ea92f0c
1917
1918
  };
1918
1919
  this.joinPath = build$7(this.root, options);
1919
1920
  this.pushDirectory = build$6(this.root, options);
@@ -2115,36 +2116,36 @@ var Builder = class {
2115
2116
  };
2116
2117
  const picomatch = __webpack_require__("../../node_modules/.pnpm/picomatch@4.0.4/node_modules/picomatch/index.js");
2117
2118
  const isReadonlyArray = Array.isArray;
2119
+ const BACKSLASHES = /\\/g;
2118
2120
  const isWin = "win32" === process.platform;
2119
2121
  const ONLY_PARENT_DIRECTORIES = /^(\/?\.\.)+$/;
2120
2122
  function getPartialMatcher(patterns, options = {}) {
2121
2123
  const patternsCount = patterns.length;
2122
2124
  const patternsParts = Array(patternsCount);
2123
2125
  const matchers = Array(patternsCount);
2124
- const globstarEnabled = !options.noglobstar;
2125
- for(let i = 0; i < patternsCount; i++){
2126
+ let i, j;
2127
+ for(i = 0; i < patternsCount; i++){
2126
2128
  const parts = splitPattern(patterns[i]);
2127
2129
  patternsParts[i] = parts;
2128
2130
  const partsCount = parts.length;
2129
2131
  const partMatchers = Array(partsCount);
2130
- for(let j = 0; j < partsCount; j++)partMatchers[j] = picomatch(parts[j], options);
2132
+ for(j = 0; j < partsCount; j++)partMatchers[j] = picomatch(parts[j], options);
2131
2133
  matchers[i] = partMatchers;
2132
2134
  }
2133
2135
  return (input)=>{
2134
2136
  const inputParts = input.split("/");
2135
2137
  if (".." === inputParts[0] && ONLY_PARENT_DIRECTORIES.test(input)) return true;
2136
- for(let i = 0; i < patterns.length; i++){
2138
+ for(i = 0; i < patternsCount; i++){
2137
2139
  const patternParts = patternsParts[i];
2138
2140
  const matcher = matchers[i];
2139
2141
  const inputPatternCount = inputParts.length;
2140
2142
  const minParts = Math.min(inputPatternCount, patternParts.length);
2141
- let j = 0;
2143
+ j = 0;
2142
2144
  while(j < minParts){
2143
2145
  const part = patternParts[j];
2144
2146
  if (part.includes("/")) return true;
2145
- const match = matcher[j](inputParts[j]);
2146
- if (!match) break;
2147
- if (globstarEnabled && "**" === part) return true;
2147
+ if (!matcher[j](inputParts[j])) break;
2148
+ if (!options.noglobstar && "**" === part) return true;
2148
2149
  j++;
2149
2150
  }
2150
2151
  if (j === inputPatternCount) return true;
@@ -2157,7 +2158,7 @@ const isRoot = isWin ? (p)=>WIN32_ROOT_DIR.test(p) : (p)=>"/" === p;
2157
2158
  function buildFormat(cwd, root, absolute) {
2158
2159
  if (cwd === root || root.startsWith(`${cwd}/`)) {
2159
2160
  if (absolute) {
2160
- const start = isRoot(cwd) ? cwd.length : cwd.length + 1;
2161
+ const start = cwd.length + +!isRoot(cwd);
2161
2162
  return (p, isDir)=>p.slice(start, isDir ? -1 : void 0) || ".";
2162
2163
  }
2163
2164
  const prefix = root.slice(cwd.length + 1);
@@ -2178,24 +2179,23 @@ function buildRelative(cwd, root) {
2178
2179
  }
2179
2180
  return (p)=>{
2180
2181
  const result = posix.relative(cwd, `${root}/${p}`);
2181
- if (p.endsWith("/") && "" !== result) return `${result}/`;
2182
- return result || ".";
2182
+ return "/" === p[p.length - 1] && "" !== result ? `${result}/` : result || ".";
2183
2183
  };
2184
2184
  }
2185
2185
  const splitPatternOptions = {
2186
2186
  parts: true
2187
2187
  };
2188
- function splitPattern(path$1) {
2188
+ function splitPattern(path) {
2189
2189
  var _result$parts;
2190
- const result = picomatch.scan(path$1, splitPatternOptions);
2190
+ const result = picomatch.scan(path, splitPatternOptions);
2191
2191
  return (null == (_result$parts = result.parts) ? void 0 : _result$parts.length) ? result.parts : [
2192
- path$1
2192
+ path
2193
2193
  ];
2194
2194
  }
2195
2195
  const POSIX_UNESCAPED_GLOB_SYMBOLS = /(?<!\\)([()[\]{}*?|]|^!|[!+@](?=\()|\\(?![()[\]{}!*+?@|]))/g;
2196
2196
  const WIN32_UNESCAPED_GLOB_SYMBOLS = /(?<!\\)([()[\]{}]|^!|[!+@](?=\())/g;
2197
- const escapePosixPath = (path$1)=>path$1.replace(POSIX_UNESCAPED_GLOB_SYMBOLS, "\\$&");
2198
- const escapeWin32Path = (path$1)=>path$1.replace(WIN32_UNESCAPED_GLOB_SYMBOLS, "\\$&");
2197
+ const escapePosixPath = (path)=>path.replace(POSIX_UNESCAPED_GLOB_SYMBOLS, "\\$&");
2198
+ const escapeWin32Path = (path)=>path.replace(WIN32_UNESCAPED_GLOB_SYMBOLS, "\\$&");
2199
2199
  const escapePath = isWin ? escapeWin32Path : escapePosixPath;
2200
2200
  function isDynamicPattern(pattern, options) {
2201
2201
  if ((null == options ? void 0 : options.caseSensitiveMatch) === false) return true;
@@ -2205,27 +2205,33 @@ function isDynamicPattern(pattern, options) {
2205
2205
  function log(...tasks) {
2206
2206
  console.log(`[tinyglobby ${/* @__PURE__ */ new Date().toLocaleTimeString("es")}]`, ...tasks);
2207
2207
  }
2208
+ function ensureStringArray(value) {
2209
+ return "string" == typeof value ? [
2210
+ value
2211
+ ] : null != value ? value : [];
2212
+ }
2208
2213
  const PARENT_DIRECTORY = /^(\/?\.\.)+/;
2209
2214
  const ESCAPING_BACKSLASHES = /\\(?=[()[\]{}!*+?@|])/g;
2210
- const BACKSLASHES = /\\/g;
2211
- function normalizePattern(pattern, expandDirectories, cwd, props, isIgnore) {
2215
+ function normalizePattern(pattern, opts, props, isIgnore) {
2216
+ var _PARENT_DIRECTORY$exe;
2217
+ const cwd = opts.cwd;
2212
2218
  let result = pattern;
2213
- if (pattern.endsWith("/")) result = pattern.slice(0, -1);
2214
- if (!result.endsWith("*") && expandDirectories) result += "/**";
2219
+ if ("/" === pattern[pattern.length - 1]) result = pattern.slice(0, -1);
2220
+ if ("*" !== result[result.length - 1] && opts.expandDirectories) result += "/**";
2215
2221
  const escapedCwd = escapePath(cwd);
2216
- result = path_0.isAbsolute(result.replace(ESCAPING_BACKSLASHES, "")) ? posix.relative(escapedCwd, result) : posix.normalize(result);
2217
- const parentDirectoryMatch = PARENT_DIRECTORY.exec(result);
2222
+ result = isAbsolute(result.replace(ESCAPING_BACKSLASHES, "")) ? posix.relative(escapedCwd, result) : posix.normalize(result);
2223
+ const parentDir = null == (_PARENT_DIRECTORY$exe = PARENT_DIRECTORY.exec(result)) ? void 0 : _PARENT_DIRECTORY$exe[0];
2218
2224
  const parts = splitPattern(result);
2219
- if (null == parentDirectoryMatch ? void 0 : parentDirectoryMatch[0]) {
2220
- const n = (parentDirectoryMatch[0].length + 1) / 3;
2225
+ if (parentDir) {
2226
+ const n = (parentDir.length + 1) / 3;
2221
2227
  let i = 0;
2222
2228
  const cwdParts = escapedCwd.split("/");
2223
2229
  while(i < n && parts[i + n] === cwdParts[cwdParts.length + i - n]){
2224
2230
  result = result.slice(0, (n - i - 1) * 3) + result.slice((n - i) * 3 + parts[i + n].length + 1) || ".";
2225
2231
  i++;
2226
2232
  }
2227
- const potentialRoot = posix.join(cwd, parentDirectoryMatch[0].slice(3 * i));
2228
- if (!potentialRoot.startsWith(".") && props.root.length > potentialRoot.length) {
2233
+ const potentialRoot = posix.join(cwd, parentDir.slice(3 * i));
2234
+ if ("." !== potentialRoot[0] && props.root.length > potentialRoot.length) {
2229
2235
  props.root = potentialRoot;
2230
2236
  props.depthOffset = -n + i;
2231
2237
  }
@@ -2240,7 +2246,7 @@ function normalizePattern(pattern, expandDirectories, cwd, props, isIgnore) {
2240
2246
  newCommonPath.pop();
2241
2247
  break;
2242
2248
  }
2243
- if (part !== props.commonPath[i] || isDynamicPattern(part) || i === parts.length - 1) break;
2249
+ if (i === parts.length - 1 || part !== props.commonPath[i] || isDynamicPattern(part)) break;
2244
2250
  newCommonPath.push(part);
2245
2251
  }
2246
2252
  props.depthOffset = newCommonPath.length;
@@ -2249,147 +2255,129 @@ function normalizePattern(pattern, expandDirectories, cwd, props, isIgnore) {
2249
2255
  }
2250
2256
  return result;
2251
2257
  }
2252
- function processPatterns({ patterns = [
2253
- "**/*"
2254
- ], ignore = [], expandDirectories = true }, cwd, props) {
2255
- if ("string" == typeof patterns) patterns = [
2256
- patterns
2257
- ];
2258
- if ("string" == typeof ignore) ignore = [
2259
- ignore
2260
- ];
2258
+ function processPatterns(options, patterns, props) {
2261
2259
  const matchPatterns = [];
2262
2260
  const ignorePatterns = [];
2263
- for (const pattern of ignore)if (pattern) {
2264
- if ("!" !== pattern[0] || "(" === pattern[1]) ignorePatterns.push(normalizePattern(pattern, expandDirectories, cwd, props, true));
2261
+ for (const pattern of options.ignore)if (pattern) {
2262
+ if ("!" !== pattern[0] || "(" === pattern[1]) ignorePatterns.push(normalizePattern(pattern, options, props, true));
2265
2263
  }
2266
2264
  for (const pattern of patterns)if (pattern) {
2267
- if ("!" !== pattern[0] || "(" === pattern[1]) matchPatterns.push(normalizePattern(pattern, expandDirectories, cwd, props, false));
2268
- else if ("!" !== pattern[1] || "(" === pattern[2]) ignorePatterns.push(normalizePattern(pattern.slice(1), expandDirectories, cwd, props, true));
2265
+ if ("!" !== pattern[0] || "(" === pattern[1]) matchPatterns.push(normalizePattern(pattern, options, props, false));
2266
+ else if ("!" !== pattern[1] || "(" === pattern[2]) ignorePatterns.push(normalizePattern(pattern.slice(1), options, props, true));
2269
2267
  }
2270
2268
  return {
2271
2269
  match: matchPatterns,
2272
2270
  ignore: ignorePatterns
2273
2271
  };
2274
2272
  }
2275
- function formatPaths(paths, relative) {
2276
- for(let i = paths.length - 1; i >= 0; i--){
2277
- const path$1 = paths[i];
2278
- paths[i] = relative(path$1);
2279
- }
2280
- return paths;
2281
- }
2282
- function normalizeCwd(cwd) {
2283
- if (!cwd) return process.cwd().replace(BACKSLASHES, "/");
2284
- if (cwd instanceof URL) return fileURLToPath(cwd).replace(BACKSLASHES, "/");
2285
- return path_0.resolve(cwd).replace(BACKSLASHES, "/");
2286
- }
2287
- function getCrawler(patterns, inputOptions = {}) {
2288
- const options = process.env.TINYGLOBBY_DEBUG ? {
2289
- ...inputOptions,
2290
- debug: true
2291
- } : inputOptions;
2292
- const cwd = normalizeCwd(options.cwd);
2293
- if (options.debug) log("globbing with:", {
2294
- patterns,
2295
- options,
2296
- cwd
2297
- });
2298
- if (Array.isArray(patterns) && 0 === patterns.length) return [
2299
- {
2300
- sync: ()=>[],
2301
- withPromise: async ()=>[]
2302
- },
2303
- false
2304
- ];
2273
+ function buildCrawler(options, patterns) {
2274
+ const cwd = options.cwd;
2305
2275
  const props = {
2306
2276
  root: cwd,
2307
- commonPath: null,
2308
2277
  depthOffset: 0
2309
2278
  };
2310
- const processed = processPatterns({
2311
- ...options,
2312
- patterns
2313
- }, cwd, props);
2279
+ const processed = processPatterns(options, patterns, props);
2314
2280
  if (options.debug) log("internal processing patterns:", processed);
2281
+ const { absolute, caseSensitiveMatch, debug, dot, followSymbolicLinks, onlyDirectories } = options;
2282
+ const root = props.root.replace(BACKSLASHES, "");
2315
2283
  const matchOptions = {
2316
- dot: options.dot,
2284
+ dot,
2317
2285
  nobrace: false === options.braceExpansion,
2318
- nocase: false === options.caseSensitiveMatch,
2286
+ nocase: !caseSensitiveMatch,
2319
2287
  noextglob: false === options.extglob,
2320
2288
  noglobstar: false === options.globstar,
2321
2289
  posix: true
2322
2290
  };
2323
- const matcher = picomatch(processed.match, {
2324
- ...matchOptions,
2325
- ignore: processed.ignore
2326
- });
2291
+ const matcher = picomatch(processed.match, matchOptions);
2327
2292
  const ignore = picomatch(processed.ignore, matchOptions);
2328
2293
  const partialMatcher = getPartialMatcher(processed.match, matchOptions);
2329
- const format = buildFormat(cwd, props.root, options.absolute);
2330
- const formatExclude = options.absolute ? format : buildFormat(cwd, props.root, true);
2331
- const fdirOptions = {
2294
+ const format = buildFormat(cwd, root, absolute);
2295
+ const excludeFormatter = absolute ? format : buildFormat(cwd, root, true);
2296
+ const excludePredicate = (_, p)=>{
2297
+ const relativePath = excludeFormatter(p, true);
2298
+ return "." !== relativePath && !partialMatcher(relativePath) || ignore(relativePath);
2299
+ };
2300
+ let maxDepth;
2301
+ if (void 0 !== options.deep) maxDepth = Math.round(options.deep - props.depthOffset);
2302
+ const crawler = new Builder({
2332
2303
  filters: [
2333
- options.debug ? (p, isDirectory)=>{
2334
- const path$1 = format(p, isDirectory);
2335
- const matches = matcher(path$1);
2336
- if (matches) log(`matched ${path$1}`);
2304
+ debug ? (p, isDirectory)=>{
2305
+ const path = format(p, isDirectory);
2306
+ const matches = matcher(path) && !ignore(path);
2307
+ if (matches) log(`matched ${path}`);
2337
2308
  return matches;
2338
- } : (p, isDirectory)=>matcher(format(p, isDirectory))
2309
+ } : (p, isDirectory)=>{
2310
+ const path = format(p, isDirectory);
2311
+ return matcher(path) && !ignore(path);
2312
+ }
2339
2313
  ],
2340
- exclude: options.debug ? (_, p)=>{
2341
- const relativePath = formatExclude(p, true);
2342
- const skipped = "." !== relativePath && !partialMatcher(relativePath) || ignore(relativePath);
2343
- skipped ? log(`skipped ${p}`) : log(`crawling ${p}`);
2314
+ exclude: debug ? (_, p)=>{
2315
+ const skipped = excludePredicate(_, p);
2316
+ log(`${skipped ? "skipped" : "crawling"} ${p}`);
2344
2317
  return skipped;
2345
- } : (_, p)=>{
2346
- const relativePath = formatExclude(p, true);
2347
- return "." !== relativePath && !partialMatcher(relativePath) || ignore(relativePath);
2348
- },
2349
- fs: options.fs ? {
2350
- readdir: options.fs.readdir || fs_0.readdir,
2351
- readdirSync: options.fs.readdirSync || fs_0.readdirSync,
2352
- realpath: options.fs.realpath || fs_0.realpath,
2353
- realpathSync: options.fs.realpathSync || fs_0.realpathSync,
2354
- stat: options.fs.stat || fs_0.stat,
2355
- statSync: options.fs.statSync || fs_0.statSync
2356
- } : void 0,
2318
+ } : excludePredicate,
2319
+ fs: options.fs,
2357
2320
  pathSeparator: "/",
2358
- relativePaths: true,
2359
- resolveSymlinks: true,
2321
+ relativePaths: !absolute,
2322
+ resolvePaths: absolute,
2323
+ includeBasePath: absolute,
2324
+ resolveSymlinks: followSymbolicLinks,
2325
+ excludeSymlinks: !followSymbolicLinks,
2326
+ excludeFiles: onlyDirectories,
2327
+ includeDirs: onlyDirectories || !options.onlyFiles,
2328
+ maxDepth,
2360
2329
  signal: options.signal
2361
- };
2362
- if (void 0 !== options.deep) fdirOptions.maxDepth = Math.round(options.deep - props.depthOffset);
2363
- if (options.absolute) {
2364
- fdirOptions.relativePaths = false;
2365
- fdirOptions.resolvePaths = true;
2366
- fdirOptions.includeBasePath = true;
2367
- }
2368
- if (false === options.followSymbolicLinks) {
2369
- fdirOptions.resolveSymlinks = false;
2370
- fdirOptions.excludeSymlinks = true;
2371
- }
2372
- if (options.onlyDirectories) {
2373
- fdirOptions.excludeFiles = true;
2374
- fdirOptions.includeDirs = true;
2375
- } else if (false === options.onlyFiles) fdirOptions.includeDirs = true;
2376
- props.root = props.root.replace(BACKSLASHES, "");
2377
- const root = props.root;
2378
- if (options.debug) log("internal properties:", props);
2379
- const relative = cwd !== root && !options.absolute && buildRelative(cwd, props.root);
2330
+ }).crawl(root);
2331
+ if (options.debug) log("internal properties:", {
2332
+ ...props,
2333
+ root
2334
+ });
2380
2335
  return [
2381
- new Builder(fdirOptions).crawl(root),
2382
- relative
2336
+ crawler,
2337
+ cwd !== root && !absolute && buildRelative(cwd, root)
2383
2338
  ];
2384
2339
  }
2385
- async function glob(patternsOrOptions, options) {
2386
- if (patternsOrOptions && (null == options ? void 0 : options.patterns)) throw new Error("Cannot pass patterns as both an argument and an option");
2387
- const isModern = isReadonlyArray(patternsOrOptions) || "string" == typeof patternsOrOptions;
2388
- const opts = isModern ? options : patternsOrOptions;
2389
- const patterns = isModern ? patternsOrOptions : patternsOrOptions.patterns;
2390
- const [crawler, relative] = getCrawler(patterns, opts);
2391
- if (!relative) return crawler.withPromise();
2392
- return formatPaths(await crawler.withPromise(), relative);
2340
+ function formatPaths(paths, mapper) {
2341
+ if (mapper) for(let i = paths.length - 1; i >= 0; i--)paths[i] = mapper(paths[i]);
2342
+ return paths;
2343
+ }
2344
+ const defaultOptions = {
2345
+ caseSensitiveMatch: true,
2346
+ cwd: process.cwd(),
2347
+ debug: !!process.env.TINYGLOBBY_DEBUG,
2348
+ expandDirectories: true,
2349
+ followSymbolicLinks: true,
2350
+ onlyFiles: true
2351
+ };
2352
+ function getOptions(options) {
2353
+ const opts = {
2354
+ ...defaultOptions,
2355
+ ...options
2356
+ };
2357
+ opts.cwd = (opts.cwd instanceof URL ? fileURLToPath(opts.cwd) : resolve(opts.cwd)).replace(BACKSLASHES, "/");
2358
+ opts.ignore = ensureStringArray(opts.ignore);
2359
+ opts.fs && (opts.fs = {
2360
+ readdir: opts.fs.readdir || readdir,
2361
+ readdirSync: opts.fs.readdirSync || readdirSync,
2362
+ realpath: opts.fs.realpath || realpath,
2363
+ realpathSync: opts.fs.realpathSync || realpathSync,
2364
+ stat: opts.fs.stat || external_node_fs_stat,
2365
+ statSync: opts.fs.statSync || statSync
2366
+ });
2367
+ if (opts.debug) log("globbing with options:", opts);
2368
+ return opts;
2369
+ }
2370
+ function getCrawler(globInput, inputOptions = {}) {
2371
+ var _ref;
2372
+ if (globInput && (null == inputOptions ? void 0 : inputOptions.patterns)) throw new Error("Cannot pass patterns as both an argument and an option");
2373
+ const isModern = isReadonlyArray(globInput) || "string" == typeof globInput;
2374
+ const patterns = ensureStringArray(null != (_ref = isModern ? globInput : globInput.patterns) ? _ref : "**/*");
2375
+ const options = getOptions(isModern ? inputOptions : globInput);
2376
+ return patterns.length > 0 ? buildCrawler(options, patterns) : [];
2377
+ }
2378
+ async function glob(globInput, options) {
2379
+ const [crawler, relative] = getCrawler(globInput, options);
2380
+ return crawler ? formatPaths(await crawler.withPromise(), relative) : [];
2393
2381
  }
2394
2382
  const filterFiles = (testFiles, filters, dir)=>{
2395
2383
  if (!filters.length) return testFiles;
@@ -3,13 +3,13 @@ import { __webpack_require__ } from "./0~rslib-runtime.js";
3
3
  import { createRequire as __rspack_createRequire } from "node:module";
4
4
  const __rspack_createRequire_require = __rspack_createRequire(import.meta.url);
5
5
  __webpack_require__.add({
6
+ util (module) {
7
+ module.exports = __rspack_createRequire_require("node:util");
8
+ },
6
9
  timers (module) {
7
10
  module.exports = __rspack_createRequire_require("timers");
8
11
  },
9
12
  "timers/promises" (module) {
10
13
  module.exports = __rspack_createRequire_require("timers/promises");
11
- },
12
- util (module) {
13
- module.exports = __rspack_createRequire_require("util");
14
14
  }
15
15
  });
package/dist/9784.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /*! LICENSE: 9784.js.LICENSE.txt */
2
2
  import "node:module";
3
3
  import { __webpack_require__ } from "./0~rslib-runtime.js";
4
- import { isatty } from "tty";
4
+ import { isatty } from "node:tty";
5
5
  var dist_namespaceObject = {};
6
6
  __webpack_require__.r(dist_namespaceObject);
7
7
  __webpack_require__.d(dist_namespaceObject, {