gitextract_ue1w_d_f/ ├── .cargo/ │ └── config.toml ├── .devcontainer/ │ └── devcontainer.json ├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .flowconfig ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── Bug_Report.md │ │ ├── Feature_Request.md │ │ ├── RFC.md │ │ └── config.yml │ ├── PULL_REQUEST_TEMPLATE.md │ ├── dependabot.yml │ └── workflows/ │ ├── canary-release.yml │ ├── ci.yml │ ├── dev-release.yml │ ├── release.yml │ ├── stale.yml │ └── tag-release.yml ├── .gitignore ├── .husky/ │ ├── .gitignore │ └── pre-commit ├── .mocharc.json ├── .prettierignore ├── .prettierrc ├── .proxyrc.js ├── .vscode/ │ └── extensions.json ├── .yarn/ │ └── releases/ │ └── yarn-4.9.1.cjs ├── .yarnrc.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Cargo.toml ├── LICENSE ├── babel.config.json ├── crates/ │ ├── core/ │ │ ├── Cargo.toml │ │ └── src/ │ │ ├── asset.rs │ │ ├── dependency.rs │ │ ├── diagnostic.rs │ │ ├── environment.rs │ │ └── lib.rs │ ├── dev-dep-resolver/ │ │ ├── Cargo.toml │ │ └── src/ │ │ ├── lib.rs │ │ └── main.rs │ ├── html/ │ │ ├── Cargo.toml │ │ └── src/ │ │ ├── arena.rs │ │ ├── dependencies.rs │ │ ├── jsx.rs │ │ ├── lib.rs │ │ ├── optimize.rs │ │ ├── oxvg.rs │ │ ├── package.rs │ │ ├── serialize_html.rs │ │ ├── serialize_xml.rs │ │ └── srcset.rs │ ├── macros/ │ │ ├── Cargo.toml │ │ └── src/ │ │ ├── lib.rs │ │ └── napi.rs │ ├── node-bindings/ │ │ ├── .cargo/ │ │ │ └── config.toml │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src/ │ │ ├── fs_search.rs │ │ ├── hash.rs │ │ ├── html.rs │ │ ├── image.rs │ │ ├── lib.rs │ │ ├── resolver.rs │ │ └── transformer.rs │ └── parcel-resolver/ │ ├── Cargo.toml │ ├── README.md │ ├── benches/ │ │ └── benchmark.rs │ └── src/ │ ├── builtins.rs │ ├── cache.rs │ ├── error.rs │ ├── fs.rs │ ├── invalidations.rs │ ├── json_comments_rs/ │ │ ├── LICENSE │ │ ├── README.md │ │ └── mod.rs │ ├── lib.rs │ ├── package_json.rs │ ├── specifier.rs │ ├── tsconfig.rs │ └── url_to_path.rs ├── docs/ │ ├── AdjacencyList.md │ ├── BundlerExamples.md │ ├── Continuous Integration/ │ │ └── Native Binary Builds.md │ ├── DefaultBundler.md │ ├── Deferring.md │ ├── ManualBundling.md │ ├── Scopehoisting Packager.md │ ├── Scopehoisting Transformer.md │ ├── Scopehoisting.md │ ├── Symbol Propagation.md │ └── swc Visitors.md ├── flow-libs/ │ ├── ansi-html.js.flow │ ├── babel-core.js.flow │ ├── babel-generator.js.flow │ ├── babel-parser.js.flow │ ├── babel-preset-env.js.flow │ ├── babel-template.js.flow │ ├── babel-traverse.js.flow │ ├── babel-types.js.flow │ ├── base-x.js.flow │ ├── browserslist.js.flow │ ├── chrome-trace-event.js.flow │ ├── cli-spinners.js.flow │ ├── command-exists.js.flow │ ├── commander.js.flow │ ├── cross-spawn.js.flow │ ├── cssnano.js.flow │ ├── deasync.js │ ├── dotenv-expand.js.flow │ ├── fast-glob.js.flow │ ├── fastest-levenshtein.js.flow │ ├── fb-watchman.js.flow │ ├── filesize.js.flow │ ├── get-port.js.flow │ ├── grapheme-breaker.js.flow │ ├── htmlnano.js.flow │ ├── ink.js.flow │ ├── inspector.js.flow │ ├── isbinaryfile.js.flow │ ├── json5.js.flow │ ├── less.js.flow │ ├── micromatch.js.flow │ ├── ncp.js.flow │ ├── node-ipc.js.flow │ ├── ora.js.flow │ ├── parcel-watcher.js.flow │ ├── perf_hooks.js.flow │ ├── pirates.js.flow │ ├── postcss.js.flow │ ├── posthtml-parser.js.flow │ ├── posthtml-render.js.flow │ ├── posthtml.js.flow │ ├── preact.js.flow │ ├── ps-node.js.flow │ ├── resolve.js.flow │ ├── serialize-to-js.js.flow │ ├── split2.js.flow │ ├── srcset.js.flow │ ├── strip-ansi.js.flow │ ├── stylus.js.flow │ ├── term-size.js.flow │ ├── terser.js.flow │ ├── vscode-jsonrpc.js.flow │ ├── vscode-languageserver.js.flow │ ├── worker_threads.js.flow │ └── ws.js.flow ├── flow-typed/ │ └── npm/ │ ├── @swc/ │ │ └── core_v1.x.x.js │ ├── chalk_v4.x.x.js │ ├── clone_v2.x.x.js │ ├── express_v4.x.x.js │ ├── is-url_v1.x.x.js │ ├── mime_v2.x.x.js │ ├── mkdirp_v0.5.x.js │ ├── mocha_v8.x.x.js │ ├── rimraf_v5.x.x.js │ ├── semver_v6.2.x.js │ ├── sinon_v7.x.x.js │ ├── source-map_v0.7.x.js │ ├── tempy_v0.x.x.js │ └── typescript_v3.3.x.js ├── gulpfile.js ├── lerna.json ├── package.json ├── packages/ │ ├── bundlers/ │ │ ├── default/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── DefaultBundler.js │ │ └── library/ │ │ ├── package.json │ │ └── src/ │ │ └── LibraryBundler.js │ ├── compressors/ │ │ ├── brotli/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── BrotliCompressor.js │ │ ├── gzip/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── GzipCompressor.js │ │ └── raw/ │ │ ├── package.json │ │ └── src/ │ │ └── RawCompressor.js │ ├── configs/ │ │ ├── default/ │ │ │ ├── index.json │ │ │ ├── package.json │ │ │ └── test/ │ │ │ ├── .babelrc │ │ │ └── config.test.js │ │ ├── repl/ │ │ │ ├── index.json │ │ │ └── package.json │ │ └── webextension/ │ │ ├── index.json │ │ └── package.json │ ├── core/ │ │ ├── cache/ │ │ │ ├── index.d.ts │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── FSCache.js │ │ │ ├── IDBCache.browser.js │ │ │ ├── IDBCache.js │ │ │ ├── LMDBCache.js │ │ │ ├── index.js │ │ │ └── types.js │ │ ├── codeframe/ │ │ │ ├── package.json │ │ │ ├── src/ │ │ │ │ └── codeframe.js │ │ │ └── test/ │ │ │ ├── codeframe.test.js │ │ │ └── fixtures/ │ │ │ └── a.js │ │ ├── core/ │ │ │ ├── index.d.ts │ │ │ ├── package.json │ │ │ ├── src/ │ │ │ │ ├── AssetGraph.js │ │ │ │ ├── BundleGraph.js │ │ │ │ ├── CommittedAsset.js │ │ │ │ ├── Dependency.js │ │ │ │ ├── Environment.js │ │ │ │ ├── InternalConfig.js │ │ │ │ ├── PackagerRunner.js │ │ │ │ ├── Parcel.js │ │ │ │ ├── ParcelConfig.js │ │ │ │ ├── ParcelConfig.schema.js │ │ │ │ ├── ReporterRunner.js │ │ │ │ ├── RequestTracker.js │ │ │ │ ├── SymbolPropagation.js │ │ │ │ ├── TargetDescriptor.schema.js │ │ │ │ ├── Transformation.js │ │ │ │ ├── UncommittedAsset.js │ │ │ │ ├── Validation.js │ │ │ │ ├── applyRuntimes.js │ │ │ │ ├── assetUtils.js │ │ │ │ ├── buildCache.js │ │ │ │ ├── constants.js │ │ │ │ ├── dumpGraphToGraphViz.js │ │ │ │ ├── index.js │ │ │ │ ├── loadDotEnv.js │ │ │ │ ├── loadParcelPlugin.js │ │ │ │ ├── projectPath.js │ │ │ │ ├── public/ │ │ │ │ │ ├── Asset.js │ │ │ │ │ ├── Bundle.js │ │ │ │ │ ├── BundleGraph.js │ │ │ │ │ ├── BundleGroup.js │ │ │ │ │ ├── Config.js │ │ │ │ │ ├── Dependency.js │ │ │ │ │ ├── Environment.js │ │ │ │ │ ├── MutableBundleGraph.js │ │ │ │ │ ├── PluginOptions.js │ │ │ │ │ ├── Symbols.js │ │ │ │ │ └── Target.js │ │ │ │ ├── registerCoreWithSerializer.js │ │ │ │ ├── requests/ │ │ │ │ │ ├── AssetGraphRequest.js │ │ │ │ │ ├── AssetRequest.js │ │ │ │ │ ├── BundleGraphRequest.js │ │ │ │ │ ├── ConfigRequest.js │ │ │ │ │ ├── DevDepRequest.js │ │ │ │ │ ├── EntryRequest.js │ │ │ │ │ ├── PackageRequest.js │ │ │ │ │ ├── ParcelBuildRequest.js │ │ │ │ │ ├── ParcelConfigRequest.js │ │ │ │ │ ├── PathRequest.js │ │ │ │ │ ├── TargetRequest.js │ │ │ │ │ ├── ValidationRequest.js │ │ │ │ │ ├── WriteBundleRequest.js │ │ │ │ │ └── WriteBundlesRequest.js │ │ │ │ ├── resolveOptions.js │ │ │ │ ├── serializer.js │ │ │ │ ├── serializerCore.browser.js │ │ │ │ ├── serializerCore.js │ │ │ │ ├── summarizeRequest.js │ │ │ │ ├── types.js │ │ │ │ ├── utils.js │ │ │ │ └── worker.js │ │ │ └── test/ │ │ │ ├── AssetGraph.test.js │ │ │ ├── BundleGraph.test.js │ │ │ ├── EntryRequest.test.js │ │ │ ├── Environment.test.js │ │ │ ├── InternalAsset.test.js │ │ │ ├── PackagerRunner.test.js │ │ │ ├── Parcel.test.js │ │ │ ├── ParcelConfig.test.js │ │ │ ├── ParcelConfigRequest.test.js │ │ │ ├── PublicAsset.test.js │ │ │ ├── PublicBundle.test.js │ │ │ ├── PublicDependency.test.js │ │ │ ├── PublicEnvironment.test.js │ │ │ ├── PublicMutableBundleGraph.test.js │ │ │ ├── RequestTracker.test.js │ │ │ ├── SymbolPropagation.test.js │ │ │ ├── TargetRequest.test.js │ │ │ ├── fixtures/ │ │ │ │ ├── .gitignore │ │ │ │ ├── application-targets/ │ │ │ │ │ └── package.json │ │ │ │ ├── bundle.js │ │ │ │ ├── common-targets/ │ │ │ │ │ └── package.json │ │ │ │ ├── common-targets-ignore/ │ │ │ │ │ └── package.json │ │ │ │ ├── config/ │ │ │ │ │ ├── .parcelrc │ │ │ │ │ └── subfolder/ │ │ │ │ │ └── .parcelrc │ │ │ │ ├── config-extends-not-found/ │ │ │ │ │ ├── .parcelrc │ │ │ │ │ ├── .parcelrc-json5 │ │ │ │ │ ├── .parcelrc-multiple │ │ │ │ │ └── .parcelrc-node-modules │ │ │ │ ├── config-malformed/ │ │ │ │ │ └── .parcelrc │ │ │ │ ├── config-node-pipeline/ │ │ │ │ │ └── .parcelrc │ │ │ │ ├── config-plugin-not-found/ │ │ │ │ │ └── .parcelrc │ │ │ │ ├── context/ │ │ │ │ │ └── package.json │ │ │ │ ├── custom-format-infer-ext/ │ │ │ │ │ └── package.json │ │ │ │ ├── custom-format-infer-type/ │ │ │ │ │ └── package.json │ │ │ │ ├── custom-format-mismatch/ │ │ │ │ │ └── package.json │ │ │ │ ├── custom-targets/ │ │ │ │ │ └── package.json │ │ │ │ ├── custom-targets-distdir/ │ │ │ │ │ └── package.json │ │ │ │ ├── default-serve/ │ │ │ │ │ └── package.json │ │ │ │ ├── duplicate-targets/ │ │ │ │ │ └── package.json │ │ │ │ ├── glob-like/ │ │ │ │ │ └── [entry].js │ │ │ │ ├── invalid-distpath/ │ │ │ │ │ └── package.json │ │ │ │ ├── invalid-engines/ │ │ │ │ │ └── package.json │ │ │ │ ├── invalid-source-missing/ │ │ │ │ │ └── package.json │ │ │ │ ├── invalid-source-not-file/ │ │ │ │ │ ├── package.json │ │ │ │ │ └── src/ │ │ │ │ │ └── index.js │ │ │ │ ├── invalid-target-source-missing/ │ │ │ │ │ └── package.json │ │ │ │ ├── invalid-target-source-not-file/ │ │ │ │ │ ├── package.json │ │ │ │ │ └── src/ │ │ │ │ │ └── index.js │ │ │ │ ├── invalid-targets/ │ │ │ │ │ └── package.json │ │ │ │ ├── library-custom-scopehoist/ │ │ │ │ │ └── package.json │ │ │ │ ├── library-scopehoist/ │ │ │ │ │ └── package.json │ │ │ │ ├── local-plugin-config-pkg/ │ │ │ │ │ ├── .parcelrc │ │ │ │ │ └── node_modules/ │ │ │ │ │ └── parcel-config-local/ │ │ │ │ │ ├── index.json │ │ │ │ │ ├── local-plugin.js │ │ │ │ │ └── package.json │ │ │ │ ├── main-format-mismatch/ │ │ │ │ │ └── package.json │ │ │ │ ├── main-global/ │ │ │ │ │ └── package.json │ │ │ │ ├── main-mjs/ │ │ │ │ │ └── package.json │ │ │ │ ├── module-a.js │ │ │ │ ├── module-b.js │ │ │ │ ├── parcel/ │ │ │ │ │ ├── index.js │ │ │ │ │ ├── other.js │ │ │ │ │ └── package.json │ │ │ │ ├── plugins/ │ │ │ │ │ ├── local-plugin.js │ │ │ │ │ └── node_modules/ │ │ │ │ │ ├── parcel-transformer-bad-engines/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ └── parcel-transformer-no-engines/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── targets-default-distdir-none/ │ │ │ │ │ └── package.json │ │ │ │ ├── targets-default-distdir-one/ │ │ │ │ │ └── package.json │ │ │ │ └── targets-default-distdir-two/ │ │ │ │ └── package.json │ │ │ ├── requests/ │ │ │ │ ├── ConfigRequest.test.js │ │ │ │ └── DevDepRequest.test.js │ │ │ ├── serializer.test.js │ │ │ ├── test-utils.js │ │ │ └── utils.test.js │ │ ├── diagnostic/ │ │ │ ├── package.json │ │ │ ├── src/ │ │ │ │ └── diagnostic.js │ │ │ └── test/ │ │ │ ├── JSONCodeHighlights.test.js │ │ │ └── markdown.test.js │ │ ├── feature-flags/ │ │ │ ├── package.json │ │ │ ├── src/ │ │ │ │ ├── index.js │ │ │ │ └── types.js │ │ │ └── test/ │ │ │ └── feature-flags.test.js │ │ ├── fs/ │ │ │ ├── .gitignore │ │ │ ├── index.d.ts │ │ │ ├── package.json │ │ │ ├── src/ │ │ │ │ ├── MemoryFS.js │ │ │ │ ├── NodeFS.browser.js │ │ │ │ ├── NodeFS.js │ │ │ │ ├── OverlayFS.js │ │ │ │ ├── find.js │ │ │ │ └── index.js │ │ │ └── test/ │ │ │ └── OverlayFS.test.js │ │ ├── graph/ │ │ │ ├── package.json │ │ │ ├── src/ │ │ │ │ ├── AdjacencyList.js │ │ │ │ ├── BitSet.js │ │ │ │ ├── ContentGraph.js │ │ │ │ ├── Graph.js │ │ │ │ ├── index.js │ │ │ │ ├── shared-buffer.js │ │ │ │ └── types.js │ │ │ └── test/ │ │ │ ├── AdjacencyList.test.js │ │ │ ├── BitSet.test.js │ │ │ ├── ContentGraph.test.js │ │ │ ├── Graph.test.js │ │ │ └── integration/ │ │ │ └── adjacency-list-shared-array.js │ │ ├── integration-tests/ │ │ │ ├── .gitignore │ │ │ ├── .mocharc.json │ │ │ ├── data/ │ │ │ │ ├── lastTestRun.json │ │ │ │ └── testHistory.json │ │ │ ├── package.json │ │ │ └── test/ │ │ │ ├── BundleGraph.js │ │ │ ├── api.js │ │ │ ├── babel.js │ │ │ ├── blob-url.js │ │ │ ├── bundler.js │ │ │ ├── cache.js │ │ │ ├── compressors.js │ │ │ ├── config-merging.js │ │ │ ├── contentHashing.js │ │ │ ├── css-modules.js │ │ │ ├── css.js │ │ │ ├── elm.js │ │ │ ├── encodedURI.js │ │ │ ├── eslint-validation.js │ │ │ ├── feature-flags.js │ │ │ ├── fs.js │ │ │ ├── glob.js │ │ │ ├── globals.js │ │ │ ├── glsl.js │ │ │ ├── graphql.js │ │ │ ├── hmr.js │ │ │ ├── html.js │ │ │ ├── image.js │ │ │ ├── incremental-bundling.js │ │ │ ├── integration/ │ │ │ │ ├── .eslintrc.json │ │ │ │ ├── alias/ │ │ │ │ │ ├── bar.js │ │ │ │ │ ├── exclude-local.js │ │ │ │ │ ├── exclude-package.js │ │ │ │ │ ├── package-to-local.js │ │ │ │ │ ├── package-to-package.js │ │ │ │ │ └── package.json │ │ │ │ ├── async-dep-internal-external/ │ │ │ │ │ ├── async.js │ │ │ │ │ ├── child.js │ │ │ │ │ ├── entry1.js │ │ │ │ │ └── entry2.js │ │ │ │ ├── async-entry-shared/ │ │ │ │ │ ├── async.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── scope-hoisting.js │ │ │ │ │ └── value.js │ │ │ │ ├── async-entry-shared-sibling/ │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── other-entry.js │ │ │ │ │ ├── scope-hoisting.js │ │ │ │ │ └── value.js │ │ │ │ ├── babel/ │ │ │ │ │ ├── .babelrc │ │ │ │ │ ├── .eslintrc.json │ │ │ │ │ ├── foo.js │ │ │ │ │ └── index.js │ │ │ │ ├── babel-6-autoinstall/ │ │ │ │ │ ├── .babelrc │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── babel-6-compatibility/ │ │ │ │ │ ├── .babelrc │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── babel-7-autoinstall/ │ │ │ │ │ ├── .babelrc │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── babel-browserslist/ │ │ │ │ │ ├── .eslintrc.json │ │ │ │ │ ├── foo.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── babel-browserslist-multiple-env/ │ │ │ │ │ ├── .eslintrc.json │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── babel-browserslist-multiple-env-as-string/ │ │ │ │ │ ├── .eslintrc.json │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── babel-config-js/ │ │ │ │ │ ├── babel.config.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── src/ │ │ │ │ │ └── index.js │ │ │ │ ├── babel-config-js-multitarget/ │ │ │ │ │ ├── babel.config.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── src/ │ │ │ │ │ └── index.js │ │ │ │ ├── babel-config-js-multitarget-transform-runtime/ │ │ │ │ │ ├── babel.config.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── src/ │ │ │ │ │ └── index.js │ │ │ │ ├── babel-config-js-require/ │ │ │ │ │ ├── babel.config.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── src/ │ │ │ │ │ └── index.js │ │ │ │ ├── babel-config-json-custom/ │ │ │ │ │ ├── babel.config.json │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── babel-config-monorepo/ │ │ │ │ │ ├── babel-plugin-dummy-1.js │ │ │ │ │ ├── babel.config.json │ │ │ │ │ ├── package.json │ │ │ │ │ └── packages/ │ │ │ │ │ ├── pkg-a/ │ │ │ │ │ │ ├── .babelrc │ │ │ │ │ │ ├── babel-plugin-dummy-2.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── src/ │ │ │ │ │ │ └── index.js │ │ │ │ │ └── pkg-b/ │ │ │ │ │ ├── .babelrc │ │ │ │ │ ├── babel-plugin-dummy-3.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── src/ │ │ │ │ │ └── index.js │ │ │ │ ├── babel-core-js/ │ │ │ │ │ ├── .eslintrc │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── babel-custom/ │ │ │ │ │ ├── .babelrc │ │ │ │ │ ├── index.js │ │ │ │ │ ├── jsx.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── ts.ts │ │ │ │ │ └── tsx.tsx │ │ │ │ ├── babel-default/ │ │ │ │ │ ├── .eslintrc.json │ │ │ │ │ ├── foo.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── babel-env-name/ │ │ │ │ │ ├── .babelrc │ │ │ │ │ └── index.js │ │ │ │ ├── babel-external-deps/ │ │ │ │ │ ├── .babelrc │ │ │ │ │ ├── fallback.txt │ │ │ │ │ ├── index.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── plugin.js │ │ │ │ ├── babel-node-modules/ │ │ │ │ │ ├── .eslintrc.json │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── babel-node-modules-browserslist/ │ │ │ │ │ ├── .eslintrc.json │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── babel-node-modules-jsx/ │ │ │ │ │ ├── .eslintrc.json │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── babel-node-modules-source/ │ │ │ │ │ ├── .eslintrc.json │ │ │ │ │ ├── index.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── packages/ │ │ │ │ │ └── foo/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── babel-node-modules-source-unlinked/ │ │ │ │ │ ├── .eslintrc.json │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── babel-optional-chaining/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── babel-plugin-autoinstall/ │ │ │ │ │ ├── .babelrc │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── babel-plugin-upgrade/ │ │ │ │ │ ├── .babelrc │ │ │ │ │ └── index.js │ │ │ │ ├── babel-preset-env-shippedProposals/ │ │ │ │ │ ├── .babelrc │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── babel-semver-engine/ │ │ │ │ │ ├── foo.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── babel-strip-flow-types/ │ │ │ │ │ ├── flow-typed-file.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── babel-warn-all/ │ │ │ │ │ ├── .babelrc │ │ │ │ │ └── index.js │ │ │ │ ├── babel-warn-some/ │ │ │ │ │ ├── .babelrc │ │ │ │ │ └── index.js │ │ │ │ ├── babel-warn-some-json5/ │ │ │ │ │ ├── .babelrc │ │ │ │ │ └── index.js │ │ │ │ ├── babelrc-custom/ │ │ │ │ │ ├── .babelrc │ │ │ │ │ ├── .yarnrc.yml │ │ │ │ │ ├── babel-plugin-different.js │ │ │ │ │ ├── babel-plugin-dummy.js │ │ │ │ │ ├── differentConfig │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── blob-url/ │ │ │ │ │ ├── .parcelrc │ │ │ │ │ ├── index.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── test.txt │ │ │ │ │ └── worker.js │ │ │ │ ├── bundle-naming/ │ │ │ │ │ └── .invisible/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── lib.js │ │ │ │ ├── bundle-text/ │ │ │ │ │ ├── async.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.js │ │ │ │ │ ├── inline.html │ │ │ │ │ ├── inline.js │ │ │ │ │ ├── javascript.js │ │ │ │ │ ├── log.js │ │ │ │ │ ├── main.js │ │ │ │ │ ├── other.html │ │ │ │ │ ├── other.js │ │ │ │ │ └── text.scss │ │ │ │ ├── bundler-error-syntax-error/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── index.js │ │ │ │ ├── bundler-middleware/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── local.js │ │ │ │ ├── cache/ │ │ │ │ │ ├── package.json │ │ │ │ │ └── src/ │ │ │ │ │ ├── entries/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.js │ │ │ │ │ └── nested/ │ │ │ │ │ └── test.js │ │ │ │ ├── cache-add-dep-referenced/ │ │ │ │ │ ├── a.html │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.html │ │ │ │ │ ├── b.js │ │ │ │ │ ├── c.js │ │ │ │ │ └── package.json │ │ │ │ ├── child-bundle-different-types/ │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.js │ │ │ │ │ ├── main.js │ │ │ │ │ ├── other.html │ │ │ │ │ ├── other.js │ │ │ │ │ └── util.js │ │ │ │ ├── circular/ │ │ │ │ │ ├── .eslintrc.json │ │ │ │ │ ├── about.html │ │ │ │ │ ├── about.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.js │ │ │ │ │ └── test.html │ │ │ │ ├── coffee/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── local.coffee │ │ │ │ ├── commonjs/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── local.js │ │ │ │ ├── commonjs-import-url/ │ │ │ │ │ ├── index.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── x.txt │ │ │ │ ├── commonjs-template-literal-interpolation/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── commonjs-template-literal-plain/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── commonjs-with-symlinks/ │ │ │ │ │ ├── local.js │ │ │ │ │ └── src/ │ │ │ │ │ └── index.js │ │ │ │ ├── compressors/ │ │ │ │ │ ├── .parcelrc │ │ │ │ │ └── index.js │ │ │ │ ├── compressors-disable-default/ │ │ │ │ │ ├── .parcelrc │ │ │ │ │ └── index.js │ │ │ │ ├── config-merging/ │ │ │ │ │ ├── .parcelrc │ │ │ │ │ ├── index.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── test.custom-ext │ │ │ │ ├── css/ │ │ │ │ │ ├── c.css │ │ │ │ │ ├── c.js │ │ │ │ │ ├── index.css │ │ │ │ │ ├── index.js │ │ │ │ │ ├── local.css │ │ │ │ │ └── local.js │ │ │ │ ├── css-exports/ │ │ │ │ │ ├── index.css │ │ │ │ │ └── package.json │ │ │ │ ├── css-external/ │ │ │ │ │ ├── a.css │ │ │ │ │ └── b.css │ │ │ │ ├── css-import/ │ │ │ │ │ ├── index.css │ │ │ │ │ ├── index.js │ │ │ │ │ ├── local.css │ │ │ │ │ └── other.css │ │ │ │ ├── css-invalid-import/ │ │ │ │ │ ├── index.css │ │ │ │ │ └── package.json │ │ │ │ ├── css-layer/ │ │ │ │ │ ├── a.css │ │ │ │ │ ├── b.css │ │ │ │ │ └── c.css │ │ │ │ ├── css-module-css-siblings/ │ │ │ │ │ ├── a.module.css │ │ │ │ │ ├── b.module.css │ │ │ │ │ ├── global.css │ │ │ │ │ ├── index.html │ │ │ │ │ └── main.js │ │ │ │ ├── css-module-self-references/ │ │ │ │ │ ├── a/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── b/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ └── bar.module.css │ │ │ │ ├── css-modules-bug/ │ │ │ │ │ ├── package.json │ │ │ │ │ └── src/ │ │ │ │ │ ├── button.module.css │ │ │ │ │ ├── index.html │ │ │ │ │ ├── main.js │ │ │ │ │ ├── main.module.css │ │ │ │ │ └── other.module.css │ │ │ │ ├── css-modules-global/ │ │ │ │ │ ├── a/ │ │ │ │ │ │ ├── index.css │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ └── b/ │ │ │ │ │ ├── index.css │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── css-modules-import/ │ │ │ │ │ ├── a.module.css │ │ │ │ │ ├── b.module.css │ │ │ │ │ ├── index.module.css │ │ │ │ │ ├── package.json │ │ │ │ │ ├── page1.html │ │ │ │ │ ├── page1.js │ │ │ │ │ ├── page2.html │ │ │ │ │ └── page2.js │ │ │ │ ├── css-modules-keyframes/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.module.css │ │ │ │ ├── css-modules-legacy/ │ │ │ │ │ ├── b.js │ │ │ │ │ ├── b.module.css │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.module.css │ │ │ │ ├── css-modules-merging-siblings/ │ │ │ │ │ ├── index.css │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── inner.module.css │ │ │ │ │ └── outer.module.css │ │ │ │ ├── css-modules-style/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── package.json │ │ │ │ ├── css-modules-targets/ │ │ │ │ │ ├── foo.module.css │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── css-modules-vars/ │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.module.css │ │ │ │ │ ├── package.json │ │ │ │ │ └── vars.module.css │ │ │ │ ├── css-nesting/ │ │ │ │ │ ├── a.css │ │ │ │ │ └── package.json │ │ │ │ ├── css-node-modules/ │ │ │ │ │ └── index.css │ │ │ │ ├── css-order/ │ │ │ │ │ ├── a.css │ │ │ │ │ ├── b.css │ │ │ │ │ ├── c.css │ │ │ │ │ ├── d.css │ │ │ │ │ └── e.css │ │ │ │ ├── css-url/ │ │ │ │ │ ├── index.css │ │ │ │ │ └── index.js │ │ │ │ ├── css-url-behavior/ │ │ │ │ │ └── index.css │ │ │ │ ├── css-url-custom-property/ │ │ │ │ │ └── index.css │ │ │ │ ├── css-url-quote/ │ │ │ │ │ ├── index.css │ │ │ │ │ └── index.js │ │ │ │ ├── css-url-relative/ │ │ │ │ │ └── src/ │ │ │ │ │ ├── a/ │ │ │ │ │ │ └── style1.css │ │ │ │ │ └── b/ │ │ │ │ │ └── style2.css │ │ │ │ ├── cssnano/ │ │ │ │ │ ├── index.css │ │ │ │ │ ├── index.js │ │ │ │ │ ├── local.css │ │ │ │ │ └── local.js │ │ │ │ ├── custom-configs/ │ │ │ │ │ ├── .parcelrc-build-metrics │ │ │ │ │ ├── .parcelrc-dev-server │ │ │ │ │ ├── .parcelrc-eslint │ │ │ │ │ ├── .parcelrc-json-reporter │ │ │ │ │ ├── .parcelrc-svg-react │ │ │ │ │ └── .parcelrc-typescript-validation │ │ │ │ ├── data-url/ │ │ │ │ │ ├── binary.css │ │ │ │ │ ├── binary.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── text.css │ │ │ │ │ └── text.js │ │ │ │ ├── decorators/ │ │ │ │ │ ├── index.ts │ │ │ │ │ └── tsconfig.json │ │ │ │ ├── decorators-useDefineForClassFields/ │ │ │ │ │ ├── index.ts │ │ │ │ │ └── tsconfig.json │ │ │ │ ├── deduplicate-from-async-cyclic-bundle-entry/ │ │ │ │ │ ├── async.js │ │ │ │ │ ├── bar.js │ │ │ │ │ ├── foo.js │ │ │ │ │ └── index.js │ │ │ │ ├── define-amd/ │ │ │ │ │ └── index.js │ │ │ │ ├── dependency-prior-transform/ │ │ │ │ │ ├── .babelrc │ │ │ │ │ ├── foo.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── insert-dependency.js │ │ │ │ ├── diagnostic-sourcemap/ │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.scss │ │ │ │ │ └── package.json │ │ │ │ ├── differing-bundle-urls/ │ │ │ │ │ ├── bar/ │ │ │ │ │ │ └── entry/ │ │ │ │ │ │ └── entry-a.js │ │ │ │ │ ├── common/ │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── foo/ │ │ │ │ │ │ ├── entry-b.js │ │ │ │ │ │ └── one/ │ │ │ │ │ │ └── deep.js │ │ │ │ │ └── package.json │ │ │ │ ├── dont-autoinstall-if-env-var-is-false/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── dont-autoinstall-resolve-alias-fails/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── dont-autoinstall-resolve-fails/ │ │ │ │ │ └── index.js │ │ │ │ ├── dotfile-bundle/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── dynamic/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── local.js │ │ │ │ ├── dynamic-common-large/ │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ ├── c.js │ │ │ │ │ ├── common.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── dynamic-common-small/ │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ ├── common-dep.js │ │ │ │ │ ├── common.js │ │ │ │ │ └── index.js │ │ │ │ ├── dynamic-css/ │ │ │ │ │ ├── index.css │ │ │ │ │ ├── index.js │ │ │ │ │ ├── local.css │ │ │ │ │ └── local.js │ │ │ │ ├── dynamic-electron-main/ │ │ │ │ │ ├── index.js │ │ │ │ │ ├── local.js │ │ │ │ │ └── package.json │ │ │ │ ├── dynamic-electron-renderer/ │ │ │ │ │ ├── index.js │ │ │ │ │ ├── local.js │ │ │ │ │ └── package.json │ │ │ │ ├── dynamic-esm/ │ │ │ │ │ ├── .eslintrc.json │ │ │ │ │ ├── index.js │ │ │ │ │ └── local.js │ │ │ │ ├── dynamic-external/ │ │ │ │ │ └── index.js │ │ │ │ ├── dynamic-hoist-deep/ │ │ │ │ │ ├── 1.js │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ ├── c.js │ │ │ │ │ └── index.js │ │ │ │ ├── dynamic-hoist-dup/ │ │ │ │ │ ├── a.js │ │ │ │ │ ├── common.js │ │ │ │ │ └── index.js │ │ │ │ ├── dynamic-hoist-no-dedupe/ │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ ├── c.js │ │ │ │ │ └── common.js │ │ │ │ ├── dynamic-hoist-no-dedupe-ancestry/ │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ ├── c.js │ │ │ │ │ ├── common.js │ │ │ │ │ ├── d.js │ │ │ │ │ └── index.js │ │ │ │ ├── dynamic-import-attributes/ │ │ │ │ │ ├── .babelrc │ │ │ │ │ ├── async.js │ │ │ │ │ ├── async2.js │ │ │ │ │ └── index.js │ │ │ │ ├── dynamic-imports-high-prio/ │ │ │ │ │ ├── async.js │ │ │ │ │ └── index.js │ │ │ │ ├── dynamic-node/ │ │ │ │ │ ├── index.js │ │ │ │ │ ├── local.js │ │ │ │ │ └── package.json │ │ │ │ ├── dynamic-references-raw/ │ │ │ │ │ ├── index.js │ │ │ │ │ ├── local.js │ │ │ │ │ └── test.txt │ │ │ │ ├── dynamic-static-prefetch/ │ │ │ │ │ ├── .babelrc │ │ │ │ │ ├── async.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── prefetched.css │ │ │ │ │ └── prefetched.js │ │ │ │ ├── dynamic-static-prefetch-loaded/ │ │ │ │ │ ├── .babelrc │ │ │ │ │ ├── async.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── prefetched-loaded.css │ │ │ │ │ └── prefetched-loaded.js │ │ │ │ ├── dynamic-static-preload/ │ │ │ │ │ ├── .babelrc │ │ │ │ │ ├── async.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── preloaded.css │ │ │ │ │ └── preloaded.js │ │ │ │ ├── dynamic-subdirectory/ │ │ │ │ │ ├── local.js │ │ │ │ │ └── subdirectory/ │ │ │ │ │ └── index.js │ │ │ │ ├── elm/ │ │ │ │ │ ├── elm.json │ │ │ │ │ ├── index.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── src/ │ │ │ │ │ └── Main.elm │ │ │ │ ├── elm-compile-error/ │ │ │ │ │ ├── elm.json │ │ │ │ │ ├── index.js │ │ │ │ │ └── src/ │ │ │ │ │ └── Main.elm │ │ │ │ ├── elm-dep-error/ │ │ │ │ │ ├── elm.json │ │ │ │ │ ├── index.js │ │ │ │ │ └── src/ │ │ │ │ │ ├── BrokenDep.elm │ │ │ │ │ └── Main.elm │ │ │ │ ├── elm-multiple-apps/ │ │ │ │ │ ├── elm.json │ │ │ │ │ ├── package.json │ │ │ │ │ └── src/ │ │ │ │ │ ├── Main.elm │ │ │ │ │ ├── MainB.elm │ │ │ │ │ ├── MainC.elm │ │ │ │ │ └── index.js │ │ │ │ ├── encodedURI/ │ │ │ │ │ └── index.html │ │ │ │ ├── entry-point/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── test.html │ │ │ │ ├── env/ │ │ │ │ │ └── index.js │ │ │ │ ├── env-binary-in-expression/ │ │ │ │ │ └── index.js │ │ │ │ ├── env-computed/ │ │ │ │ │ └── index.js │ │ │ │ ├── env-computed-string/ │ │ │ │ │ └── index.js │ │ │ │ ├── env-destructuring/ │ │ │ │ │ ├── assign.js │ │ │ │ │ └── index.js │ │ │ │ ├── env-disabled/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── env-disabled-glob/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── env-file/ │ │ │ │ │ └── index.js │ │ │ │ ├── env-file-with-package-source/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── env-hasOwnProperty/ │ │ │ │ │ └── index.js │ │ │ │ ├── env-mutate/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── warn.js │ │ │ │ ├── env-node/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── env-node-replacements/ │ │ │ │ │ ├── data/ │ │ │ │ │ │ └── test.txt │ │ │ │ │ ├── index.js │ │ │ │ │ ├── other/ │ │ │ │ │ │ └── function.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── sub/ │ │ │ │ │ └── index.js │ │ │ │ ├── env-nodeenv/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── env-prior-transform/ │ │ │ │ │ ├── .babelrc │ │ │ │ │ ├── index.js │ │ │ │ │ └── insert-env.js │ │ │ │ ├── env-unused-require/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── unused.js │ │ │ │ ├── es6/ │ │ │ │ │ ├── .eslintrc.json │ │ │ │ │ ├── index.js │ │ │ │ │ └── local.js │ │ │ │ ├── es6-default-only/ │ │ │ │ │ ├── .eslintrc.json │ │ │ │ │ ├── index.js │ │ │ │ │ └── local.js │ │ │ │ ├── eslint-error/ │ │ │ │ │ ├── .eslintrc.json │ │ │ │ │ └── index.js │ │ │ │ ├── eslint-parse-error/ │ │ │ │ │ ├── .eslintrc.json │ │ │ │ │ └── index.js │ │ │ │ ├── falsy-dep/ │ │ │ │ │ ├── index.js │ │ │ │ │ ├── true-alternate.js │ │ │ │ │ └── true-consequent.js │ │ │ │ ├── formats/ │ │ │ │ │ ├── cjs-type-module/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── commonjs/ │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ ├── exports.js │ │ │ │ │ │ ├── module-exports.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── commonjs-async/ │ │ │ │ │ │ ├── async.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── commonjs-destructuring-browsers/ │ │ │ │ │ │ ├── multiple.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── single.js │ │ │ │ │ ├── commonjs-destructuring-node/ │ │ │ │ │ │ ├── multiple.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── single-same.js │ │ │ │ │ │ └── single.js │ │ │ │ │ ├── commonjs-dynamic/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── other.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── commonjs-entry-re-export/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── commonjs-esm/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── re-assign.js │ │ │ │ │ │ ├── require-resolve.js │ │ │ │ │ │ └── universal-library.js │ │ │ │ │ ├── commonjs-esm-entry-re-export/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── commonjs-external/ │ │ │ │ │ │ ├── default-new.js │ │ │ │ │ │ ├── default.js │ │ │ │ │ │ ├── multiple.js │ │ │ │ │ │ ├── named-same.js │ │ │ │ │ │ ├── named.js │ │ │ │ │ │ ├── namespace.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── require.js │ │ │ │ │ ├── commonjs-helpers/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── commonjs-live-externals/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── commonjs-require/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── commonjs-siblings/ │ │ │ │ │ │ ├── a.css │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── commonjs-sideeffects/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── middle.js │ │ │ │ │ │ ├── missing-export.js │ │ │ │ │ │ ├── other.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── commonjs-split/ │ │ │ │ │ │ ├── async1.js │ │ │ │ │ │ ├── async2.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── commonjs-split-reexport-default/ │ │ │ │ │ │ ├── async1.js │ │ │ │ │ │ ├── async2.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── shared.js │ │ │ │ │ ├── commonjs-wrap-codesplit/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ ├── c.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── conflict-global/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── esm/ │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ ├── default-function.js │ │ │ │ │ │ ├── default-value.js │ │ │ │ │ │ ├── missing-export.js │ │ │ │ │ │ ├── multiple-times.js │ │ │ │ │ │ ├── multiple.js │ │ │ │ │ │ ├── named.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── re-export-namespace-as.js │ │ │ │ │ │ ├── re-export-rename.js │ │ │ │ │ │ └── re-export.js │ │ │ │ │ ├── esm-async/ │ │ │ │ │ │ ├── async.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── esm-async-chained-reexport/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── library/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ │ ├── c.js │ │ │ │ │ │ │ ├── createAndFireEvent.js │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── esm-async-chained-reexport2/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── library/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ │ ├── createAndFireEvent.js │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── esm-browser/ │ │ │ │ │ │ ├── async.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── esm-browser-css/ │ │ │ │ │ │ ├── async.css │ │ │ │ │ │ ├── async.js │ │ │ │ │ │ ├── index.css │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── esm-browser-split-bundle/ │ │ │ │ │ │ ├── async1.js │ │ │ │ │ │ ├── async2.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── esm-bundle-import-reexport/ │ │ │ │ │ │ ├── i18n/ │ │ │ │ │ │ │ ├── T.js │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── version.js │ │ │ │ │ ├── esm-cjs/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── esm-commonjs/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ ├── multiple-times.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── re-export-namespace-as.js │ │ │ │ │ │ └── re-export-rename.js │ │ │ │ │ ├── esm-commonjs-isLibrary-false/ │ │ │ │ │ │ ├── other.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── skipped.js │ │ │ │ │ ├── esm-conflict/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── esm-export-shadow/ │ │ │ │ │ │ ├── a.mjs │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── esm-external/ │ │ │ │ │ │ ├── child.js │ │ │ │ │ │ ├── default.js │ │ │ │ │ │ ├── export.js │ │ │ │ │ │ ├── multiple.js │ │ │ │ │ │ ├── named-same.js │ │ │ │ │ │ ├── named.js │ │ │ │ │ │ ├── namespace.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── re-export-child.js │ │ │ │ │ │ └── re-export.js │ │ │ │ │ ├── esm-filename-import/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── esm-import-shadow/ │ │ │ │ │ │ ├── a.mjs │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── esm-interop-cross-bundle/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ ├── c.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── esm-isLibrary-false/ │ │ │ │ │ │ ├── other.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── skipped.js │ │ │ │ │ ├── esm-mjs/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── esm-siblings/ │ │ │ │ │ │ ├── a.css │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── esm-sideeffects/ │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ ├── missing-export.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── esm-split/ │ │ │ │ │ │ ├── async1.js │ │ │ │ │ │ ├── async2.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── esm-split-worker/ │ │ │ │ │ │ ├── async.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── main-worker.js │ │ │ │ │ │ └── sync.js │ │ │ │ │ ├── esm-type-module/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── esm-wrap-codesplit/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ ├── c.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── global-external/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── global-split-worker/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── worker.js │ │ │ │ │ └── global-split-worker-async/ │ │ │ │ │ ├── async.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.js │ │ │ │ │ ├── main-worker.js │ │ │ │ │ └── sync.js │ │ │ │ ├── fs/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── test.txt │ │ │ │ ├── fs-alias/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── test.txt │ │ │ │ ├── fs-assign/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── test.txt │ │ │ │ ├── fs-assign-alias/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── test.txt │ │ │ │ ├── fs-buffer/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── test.txt │ │ │ │ ├── fs-destructure/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── test.txt │ │ │ │ ├── fs-destructure-assign/ │ │ │ │ │ ├── .browserslistrc │ │ │ │ │ ├── index.js │ │ │ │ │ └── test.txt │ │ │ │ ├── fs-disabled/ │ │ │ │ │ ├── index.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── test.txt │ │ │ │ ├── fs-file-non-evaluable/ │ │ │ │ │ └── index.js │ │ │ │ ├── fs-file-non-evaluable-template-env/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── fs-import/ │ │ │ │ │ ├── .eslintrc.json │ │ │ │ │ ├── index.js │ │ │ │ │ └── test.txt │ │ │ │ ├── fs-import-path-join/ │ │ │ │ │ ├── .eslintrc.json │ │ │ │ │ ├── index.js │ │ │ │ │ └── test.txt │ │ │ │ ├── fs-inline/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── test.txt │ │ │ │ ├── fs-node/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── fs-options-non-evaluable/ │ │ │ │ │ └── index.js │ │ │ │ ├── fs-outside-root/ │ │ │ │ │ └── index.js │ │ │ │ ├── glob/ │ │ │ │ │ ├── .parcelrc │ │ │ │ │ ├── dir/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ │ └── index.js │ │ │ │ ├── glob-absolute/ │ │ │ │ │ ├── .parcelrc │ │ │ │ │ ├── dir/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── packages/ │ │ │ │ │ └── child/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── glob-async/ │ │ │ │ │ ├── .parcelrc │ │ │ │ │ ├── dir/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ │ └── index.js │ │ │ │ ├── glob-css/ │ │ │ │ │ ├── .parcelrc │ │ │ │ │ ├── dir/ │ │ │ │ │ │ ├── local.css │ │ │ │ │ │ └── other.css │ │ │ │ │ ├── index.css │ │ │ │ │ └── index.js │ │ │ │ ├── glob-deep/ │ │ │ │ │ ├── .parcelrc │ │ │ │ │ ├── dir/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ └── x/ │ │ │ │ │ │ ├── c.js │ │ │ │ │ │ └── y/ │ │ │ │ │ │ └── z.js │ │ │ │ │ └── index.js │ │ │ │ ├── glob-error/ │ │ │ │ │ ├── .parcelrc │ │ │ │ │ ├── index.css │ │ │ │ │ └── index.html │ │ │ │ ├── glob-package/ │ │ │ │ │ ├── .parcelrc │ │ │ │ │ └── index.js │ │ │ │ ├── glob-package-async/ │ │ │ │ │ ├── .parcelrc │ │ │ │ │ └── index.js │ │ │ │ ├── glob-pipeline/ │ │ │ │ │ ├── .parcelrc │ │ │ │ │ ├── dir/ │ │ │ │ │ │ ├── a.txt │ │ │ │ │ │ └── b.txt │ │ │ │ │ └── index.js │ │ │ │ ├── glob-tilde/ │ │ │ │ │ ├── .parcelrc │ │ │ │ │ ├── package.json │ │ │ │ │ └── packages/ │ │ │ │ │ └── child/ │ │ │ │ │ ├── dir/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── global-alias/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── global-redeclare/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── globals/ │ │ │ │ │ ├── index.js │ │ │ │ │ ├── multiple.js │ │ │ │ │ └── scope-hoisting.js │ │ │ │ ├── globals-module-specifier/ │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ ├── c.js │ │ │ │ │ └── package.json │ │ │ │ ├── globals-unused/ │ │ │ │ │ └── a.js │ │ │ │ ├── glsl/ │ │ │ │ │ ├── compiled.glsl │ │ │ │ │ ├── index.js │ │ │ │ │ ├── lib.glsl │ │ │ │ │ ├── local.frag │ │ │ │ │ ├── local.glsl │ │ │ │ │ └── local.vert │ │ │ │ ├── glsl-relative-import/ │ │ │ │ │ ├── frag.glsl │ │ │ │ │ ├── index.js │ │ │ │ │ └── sub/ │ │ │ │ │ ├── other.glsl │ │ │ │ │ └── other2.glsl │ │ │ │ ├── graphql/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── local.graphql │ │ │ │ ├── graphql-import/ │ │ │ │ │ ├── another.graphql │ │ │ │ │ ├── index.js │ │ │ │ │ ├── local.graphql │ │ │ │ │ └── other.graphql │ │ │ │ ├── graphql-named-import/ │ │ │ │ │ ├── MyQuery.graphql │ │ │ │ │ ├── fragments.graphql │ │ │ │ │ ├── index.js │ │ │ │ │ ├── moreFragments.graphql │ │ │ │ │ └── otherFragments.graphql │ │ │ │ ├── hash-distDir/ │ │ │ │ │ ├── a/ │ │ │ │ │ │ ├── entry.html │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ └── b/ │ │ │ │ │ ├── entry.html │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── hmr-accept-self/ │ │ │ │ │ ├── index.js │ │ │ │ │ ├── local.js │ │ │ │ │ └── other.js │ │ │ │ ├── hmr-bubble/ │ │ │ │ │ ├── index.js │ │ │ │ │ ├── local.js │ │ │ │ │ └── other.js │ │ │ │ ├── hmr-callbacks/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── local.js │ │ │ │ ├── hmr-circular/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── local.js │ │ │ │ ├── hmr-css/ │ │ │ │ │ ├── index.2.css │ │ │ │ │ ├── index.css │ │ │ │ │ ├── index.html │ │ │ │ │ └── index.js │ │ │ │ ├── hmr-css-modules/ │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.jsx │ │ │ │ │ ├── index.module.css │ │ │ │ │ ├── index2.module.css │ │ │ │ │ └── package.json │ │ │ │ ├── hmr-dispose/ │ │ │ │ │ ├── index.js │ │ │ │ │ ├── local.js │ │ │ │ │ └── other.js │ │ │ │ ├── hmr-duplicate/ │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── shared.js │ │ │ │ ├── hmr-dynamic/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── local.js │ │ │ │ ├── hmr-multiple-parents/ │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ ├── fn1.js │ │ │ │ │ ├── fn2.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── utils.js │ │ │ │ ├── hmr-multiple-parents-reload/ │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ ├── fn1.js │ │ │ │ │ ├── fn2.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── utils.js │ │ │ │ ├── hmr-new-bundle/ │ │ │ │ │ ├── index.css │ │ │ │ │ ├── index.html │ │ │ │ │ └── index.js │ │ │ │ ├── hmr-parents/ │ │ │ │ │ ├── child.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── middle.js │ │ │ │ │ └── updated.js │ │ │ │ ├── hmr-parents-reload/ │ │ │ │ │ ├── child.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── middle.js │ │ │ │ │ └── updated.js │ │ │ │ ├── hmr-reload/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── local.js │ │ │ │ ├── hmr-url/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── test.txt │ │ │ │ ├── htm-extension/ │ │ │ │ │ ├── index.htm │ │ │ │ │ └── index.js │ │ │ │ ├── html/ │ │ │ │ │ ├── foo/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── other.html │ │ │ │ │ ├── index.css │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.js │ │ │ │ │ └── other.html │ │ │ │ ├── html-async-script/ │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ ├── c.js │ │ │ │ │ └── index.html │ │ │ │ ├── html-attr-order/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── other.html │ │ │ │ ├── html-canonical/ │ │ │ │ │ └── index.html │ │ │ │ ├── html-css/ │ │ │ │ │ ├── index.css │ │ │ │ │ ├── index.html │ │ │ │ │ └── index.js │ │ │ │ ├── html-css-doctype/ │ │ │ │ │ ├── index.css │ │ │ │ │ ├── index.html │ │ │ │ │ └── index.js │ │ │ │ ├── html-css-head/ │ │ │ │ │ ├── index.css │ │ │ │ │ ├── index.html │ │ │ │ │ └── index.js │ │ │ │ ├── html-css-js/ │ │ │ │ │ ├── index.css │ │ │ │ │ └── index.html │ │ │ │ ├── html-css-multi/ │ │ │ │ │ ├── a.css │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.css │ │ │ │ │ ├── b.js │ │ │ │ │ └── index.html │ │ │ │ ├── html-css-optional-elements/ │ │ │ │ │ ├── index.css │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.js │ │ │ │ │ └── other.js │ │ │ │ ├── html-empty/ │ │ │ │ │ └── index.html │ │ │ │ ├── html-empty-reference/ │ │ │ │ │ └── index.html │ │ │ │ ├── html-feed/ │ │ │ │ │ ├── atom.html │ │ │ │ │ ├── feed.xml │ │ │ │ │ └── rss.html │ │ │ │ ├── html-image-href-attr/ │ │ │ │ │ └── index.html │ │ │ │ ├── html-imagesrcset/ │ │ │ │ │ └── index.html │ │ │ │ ├── html-inline-coffeescript/ │ │ │ │ │ └── index.html │ │ │ │ ├── html-inline-css-import/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── test.css │ │ │ │ ├── html-inline-escape/ │ │ │ │ │ ├── script.html │ │ │ │ │ ├── script.js │ │ │ │ │ ├── style.css │ │ │ │ │ └── style.html │ │ │ │ ├── html-inline-importmap/ │ │ │ │ │ └── index.html │ │ │ │ ├── html-inline-js/ │ │ │ │ │ └── index.html │ │ │ │ ├── html-inline-js-module/ │ │ │ │ │ └── index.html │ │ │ │ ├── html-inline-js-nested/ │ │ │ │ │ ├── index.html │ │ │ │ │ ├── test.js │ │ │ │ │ └── test.txt │ │ │ │ ├── html-inline-js-require/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── test.js │ │ │ │ ├── html-inline-js-script/ │ │ │ │ │ ├── error.html │ │ │ │ │ ├── globals-dependencies.html │ │ │ │ │ ├── globals.html │ │ │ │ │ └── module.js │ │ │ │ ├── html-inline-js-shared/ │ │ │ │ │ └── index.html │ │ │ │ ├── html-inline-sass/ │ │ │ │ │ └── index.html │ │ │ │ ├── html-inline-styles/ │ │ │ │ │ └── index.html │ │ │ │ ├── html-inline-styles-element/ │ │ │ │ │ └── index.html │ │ │ │ ├── html-invalid/ │ │ │ │ │ └── index.html │ │ │ │ ├── html-isolate-script/ │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ ├── c.js │ │ │ │ │ ├── index.html │ │ │ │ │ └── package.json │ │ │ │ ├── html-js/ │ │ │ │ │ ├── error.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.js │ │ │ │ │ └── other.js │ │ │ │ ├── html-js-dedup/ │ │ │ │ │ ├── component-1.js │ │ │ │ │ ├── component-2.js │ │ │ │ │ ├── index.html │ │ │ │ │ └── obj.js │ │ │ │ ├── html-js-dynamic/ │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.js │ │ │ │ │ └── local.js │ │ │ │ ├── html-js-not-import-swc-helpers-without-module/ │ │ │ │ │ └── index.html │ │ │ │ ├── html-js-shared/ │ │ │ │ │ ├── async.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.js │ │ │ │ │ └── worker.js │ │ │ │ ├── html-js-shared-dynamic-nested/ │ │ │ │ │ ├── client/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── simpleHasher.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.js │ │ │ │ │ └── viewer/ │ │ │ │ │ └── index.js │ │ │ │ ├── html-js-shared-head/ │ │ │ │ │ ├── async.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.js │ │ │ │ │ └── worker.js │ │ │ │ ├── html-js-shared-nomodule/ │ │ │ │ │ ├── a.html │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.html │ │ │ │ │ ├── b.js │ │ │ │ │ ├── lib.js │ │ │ │ │ └── package.json │ │ │ │ ├── html-meta/ │ │ │ │ │ └── index.html │ │ │ │ ├── html-multi-entry/ │ │ │ │ │ ├── a.html │ │ │ │ │ ├── b.html │ │ │ │ │ ├── index.js │ │ │ │ │ └── style.css │ │ │ │ ├── html-multi-targets/ │ │ │ │ │ ├── package.json │ │ │ │ │ └── src/ │ │ │ │ │ ├── main1/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── main2/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── index.js │ │ │ │ │ └── shared.js │ │ │ │ ├── html-no-js/ │ │ │ │ │ ├── index.html │ │ │ │ │ ├── no-body-or-html.html │ │ │ │ │ ├── no-body.html │ │ │ │ │ └── package.json │ │ │ │ ├── html-object/ │ │ │ │ │ └── index.html │ │ │ │ ├── html-optional-closing-tags/ │ │ │ │ │ └── index.html │ │ │ │ ├── html-pkg-source/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── package.json │ │ │ │ ├── html-pkg-source-array/ │ │ │ │ │ ├── a.html │ │ │ │ │ ├── b.html │ │ │ │ │ └── package.json │ │ │ │ ├── html-protocol-relative/ │ │ │ │ │ ├── index.css │ │ │ │ │ └── index.html │ │ │ │ ├── html-root/ │ │ │ │ │ ├── .eslintrc.json │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index2.js │ │ │ │ │ ├── main.js │ │ │ │ │ ├── other.html │ │ │ │ │ └── util.js │ │ │ │ ├── html-shared/ │ │ │ │ │ ├── iframe.html │ │ │ │ │ ├── iframe.js │ │ │ │ │ ├── index.html │ │ │ │ │ └── index.js │ │ │ │ ├── html-shared-referenced/ │ │ │ │ │ ├── async.js │ │ │ │ │ ├── async2.js │ │ │ │ │ ├── index1.html │ │ │ │ │ ├── index1.js │ │ │ │ │ ├── index2.html │ │ │ │ │ ├── index2.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── shared.js │ │ │ │ ├── html-shared-worker/ │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.js │ │ │ │ │ └── worker.js │ │ │ │ ├── html-source-srcset/ │ │ │ │ │ └── index.html │ │ │ │ ├── html-srcset/ │ │ │ │ │ └── index.html │ │ │ │ ├── html-svg/ │ │ │ │ │ └── index.html │ │ │ │ ├── html-svg-case/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── other.html │ │ │ │ ├── html-svg-image/ │ │ │ │ │ └── index.html │ │ │ │ ├── html-svg-local-symbol/ │ │ │ │ │ └── index.html │ │ │ │ ├── html-svg-script/ │ │ │ │ │ ├── index.html │ │ │ │ │ ├── script-a.js │ │ │ │ │ └── script-b.js │ │ │ │ ├── html-sync-async-asset/ │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.js │ │ │ │ │ ├── other.js │ │ │ │ │ └── test.js │ │ │ │ ├── html-virtualpath/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── other.html │ │ │ │ ├── htmlnano/ │ │ │ │ │ └── index.html │ │ │ │ ├── htmlnano-config/ │ │ │ │ │ ├── .htmlnanorc.json │ │ │ │ │ └── index.html │ │ │ │ ├── htmlnano-defaults-form/ │ │ │ │ │ └── index.html │ │ │ │ ├── https/ │ │ │ │ │ ├── primary.crt │ │ │ │ │ └── private.pem │ │ │ │ ├── image/ │ │ │ │ │ ├── reformat-all.html │ │ │ │ │ ├── reformat.css │ │ │ │ │ ├── reformat.html │ │ │ │ │ ├── reformat.js │ │ │ │ │ └── resized.js │ │ │ │ ├── image-config/ │ │ │ │ │ └── sharp.config.json │ │ │ │ ├── image-exif/ │ │ │ │ │ └── resized.html │ │ │ │ ├── image-multiple-queries/ │ │ │ │ │ └── index.html │ │ │ │ ├── import-html-async/ │ │ │ │ │ ├── index.css │ │ │ │ │ ├── index.js │ │ │ │ │ └── other.html │ │ │ │ ├── import-html-sync/ │ │ │ │ │ ├── index.css │ │ │ │ │ ├── index.js │ │ │ │ │ └── other.html │ │ │ │ ├── import-meta/ │ │ │ │ │ └── index.js │ │ │ │ ├── import-raw/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── test.txt │ │ │ │ ├── import-raw-import-meta-url/ │ │ │ │ │ ├── cjs.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── local-url.js │ │ │ │ │ ├── missing.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── test.txt │ │ │ │ ├── include_builtins-browser/ │ │ │ │ │ ├── main.js │ │ │ │ │ └── package.json │ │ │ │ ├── include_builtins-node/ │ │ │ │ │ ├── main.js │ │ │ │ │ └── package.json │ │ │ │ ├── include_node_modules/ │ │ │ │ │ ├── local.js │ │ │ │ │ ├── main.js │ │ │ │ │ └── package.json │ │ │ │ ├── included-file/ │ │ │ │ │ ├── .parcelrc │ │ │ │ │ ├── included.txt │ │ │ │ │ ├── index.txt │ │ │ │ │ └── package.json │ │ │ │ ├── incremental-bundling/ │ │ │ │ │ ├── a.css │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ ├── c.js │ │ │ │ │ ├── index-export.js │ │ │ │ │ ├── index-multi-symbol.js │ │ │ │ │ ├── index-with-css.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.js │ │ │ │ │ ├── multi-symbol-util.js │ │ │ │ │ └── package.json │ │ │ │ ├── inline-constants/ │ │ │ │ │ ├── a.js │ │ │ │ │ ├── constants.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── inline-constants-shared-bundles/ │ │ │ │ │ ├── a.html │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.html │ │ │ │ │ ├── b.js │ │ │ │ │ ├── constants.js │ │ │ │ │ └── package.json │ │ │ │ ├── internalize-no-bundle-split/ │ │ │ │ │ ├── bar.js │ │ │ │ │ ├── foo.js │ │ │ │ │ └── index.js │ │ │ │ ├── internalize-remove-bundlegroup/ │ │ │ │ │ ├── core.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── worker1.js │ │ │ │ │ ├── worker2.js │ │ │ │ │ └── worker3.js │ │ │ │ ├── invalid-bundler-config/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── package.json │ │ │ │ ├── js-class-this-esm/ │ │ │ │ │ ├── .babelrc │ │ │ │ │ ├── a.js │ │ │ │ │ └── b.js │ │ │ │ ├── js-comment/ │ │ │ │ │ └── index.js │ │ │ │ ├── js-dedup-hoist/ │ │ │ │ │ ├── a.js │ │ │ │ │ ├── hello1.js │ │ │ │ │ ├── hello2.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── js-different-contents/ │ │ │ │ │ ├── hello.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── world.js │ │ │ │ ├── js-duplicate-re-exports/ │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ ├── c.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── utilities.js │ │ │ │ ├── js-export-all/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── other.js │ │ │ │ ├── js-export-arrow-support/ │ │ │ │ │ ├── bar/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── other.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── js-export-default/ │ │ │ │ │ ├── .babelrc │ │ │ │ │ ├── index.js │ │ │ │ │ └── other.js │ │ │ │ ├── js-export-default-fn-circular-anonymous/ │ │ │ │ │ ├── a.mjs │ │ │ │ │ ├── b.mjs │ │ │ │ │ └── c.mjs │ │ │ │ ├── js-export-default-fn-circular-named/ │ │ │ │ │ ├── a.mjs │ │ │ │ │ ├── b.mjs │ │ │ │ │ └── c.mjs │ │ │ │ ├── js-export-destructuring/ │ │ │ │ │ └── index.js │ │ │ │ ├── js-export-functions/ │ │ │ │ │ └── index.js │ │ │ │ ├── js-export-import/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── other.js │ │ │ │ ├── js-export-import-same/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── other.js │ │ │ │ ├── js-export-many/ │ │ │ │ │ ├── bar.js │ │ │ │ │ ├── baz.js │ │ │ │ │ ├── boo.js │ │ │ │ │ ├── foo.js │ │ │ │ │ ├── foobar.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── types.js │ │ │ │ ├── js-export-namespace/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── other.js │ │ │ │ ├── js-import-default-live/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── other.js │ │ │ │ ├── js-import-initialization/ │ │ │ │ │ ├── a.mjs │ │ │ │ │ ├── b.mjs │ │ │ │ │ └── c.mjs │ │ │ │ ├── js-import-member/ │ │ │ │ │ ├── foo.js │ │ │ │ │ └── index.js │ │ │ │ ├── js-import-namespace/ │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ ├── c.js │ │ │ │ │ ├── class.js │ │ │ │ │ ├── object.js │ │ │ │ │ └── other.js │ │ │ │ ├── js-import-reexport-dep-order/ │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ ├── c.js │ │ │ │ │ └── index.js │ │ │ │ ├── js-import-shadow/ │ │ │ │ │ ├── foo.js │ │ │ │ │ └── index.js │ │ │ │ ├── js-import-shadow-for-var/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── other.js │ │ │ │ ├── js-import-shadow-func-var/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── other.js │ │ │ │ ├── js-import-this/ │ │ │ │ │ ├── index.js │ │ │ │ │ ├── other-wrapped.js │ │ │ │ │ └── other.js │ │ │ │ ├── js-invalid-import/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── js-require-free/ │ │ │ │ │ └── index.js │ │ │ │ ├── js-require-import-different/ │ │ │ │ │ ├── addons.js │ │ │ │ │ ├── hooks.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── store.js │ │ │ │ ├── js-runtime-dedup/ │ │ │ │ │ ├── async1.js │ │ │ │ │ ├── async2.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── shared.js │ │ │ │ ├── js-same-contents-different-dependencies/ │ │ │ │ │ ├── hello/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── value.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── world/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── value.js │ │ │ │ ├── js-same-contents-same-dependencies/ │ │ │ │ │ ├── hello1.js │ │ │ │ │ ├── hello2.js │ │ │ │ │ └── index.js │ │ │ │ ├── js-this-commonjs/ │ │ │ │ │ ├── a.js │ │ │ │ │ └── b.js │ │ │ │ ├── js-this-es6/ │ │ │ │ │ ├── a.js │ │ │ │ │ └── b.js │ │ │ │ ├── js-unused-import-specifier/ │ │ │ │ │ ├── a.js │ │ │ │ │ └── b.js │ │ │ │ ├── js-unused-import-specifier-node-modules/ │ │ │ │ │ └── a.js │ │ │ │ ├── json/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── local.json │ │ │ │ ├── json5/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── local.json5 │ │ │ │ ├── jsx/ │ │ │ │ │ └── index.jsx │ │ │ │ ├── jsx-automatic/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── jsx-automatic-16/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── jsx-automatic-18/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── jsx-automatic-experimental/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── jsx-automatic-preact/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── jsx-automatic-preact-with-alias/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── jsx-automatic-tsconfig/ │ │ │ │ │ ├── index.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── tsconfig.json │ │ │ │ ├── jsx-hyperapp/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── jsx-hyperapp-no-dep/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── jsx-member/ │ │ │ │ │ ├── foo.jsx │ │ │ │ │ └── index.jsx │ │ │ │ ├── jsx-nervjs/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── jsx-nervjs-no-dep/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── jsx-pragma-tsconfig/ │ │ │ │ │ ├── index.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── tsconfig.json │ │ │ │ ├── jsx-preact/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── jsx-preact-no-dep/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── jsx-preact-ts/ │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── package.json │ │ │ │ ├── jsx-preact-with-url/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── jsx-react/ │ │ │ │ │ ├── index.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── pure-comment.js │ │ │ │ ├── jsx-react-alias/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── jsx-react-no-dep/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── jsx-spread/ │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── package.json │ │ │ │ ├── jsx-tsconfig/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── tsconfig.json │ │ │ │ ├── kotlin/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── test.kt │ │ │ │ ├── large-bundlegroup/ │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ ├── bar.js │ │ │ │ │ ├── baz.js │ │ │ │ │ ├── c.js │ │ │ │ │ ├── d.js │ │ │ │ │ ├── foo.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── lazy-compile/ │ │ │ │ │ ├── index-sync-async.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.js │ │ │ │ │ ├── lazy-1.js │ │ │ │ │ ├── lazy-2.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── parallel-lazy-1.js │ │ │ │ │ ├── parallel-lazy-2.js │ │ │ │ │ ├── static-component.js │ │ │ │ │ ├── uses-static-component-async.js │ │ │ │ │ └── uses-static-component.js │ │ │ │ ├── less/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.less │ │ │ │ ├── less-advanced-import/ │ │ │ │ │ ├── a.less │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.less │ │ │ │ │ ├── nested/ │ │ │ │ │ │ └── externals.less │ │ │ │ │ └── package.json │ │ │ │ ├── less-empty/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.less │ │ │ │ ├── less-exports/ │ │ │ │ │ ├── index.less │ │ │ │ │ └── package.json │ │ │ │ ├── less-import/ │ │ │ │ │ ├── a.less │ │ │ │ │ ├── b.less │ │ │ │ │ ├── c.less │ │ │ │ │ ├── d.less │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.less │ │ │ │ ├── less-include-paths/ │ │ │ │ │ ├── .lessrc.js │ │ │ │ │ ├── include-path/ │ │ │ │ │ │ └── a.less │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.less │ │ │ │ │ └── package.json │ │ │ │ ├── less-postcss/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.module.less │ │ │ │ ├── less-url/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.less │ │ │ │ ├── less-url-behavior/ │ │ │ │ │ └── index.less │ │ │ │ ├── less-url-quotes/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.less │ │ │ │ ├── less-url-rewrite/ │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.less │ │ │ │ │ ├── nested/ │ │ │ │ │ │ └── a.less │ │ │ │ │ └── package.json │ │ │ │ ├── less-webpack-import-error/ │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.less │ │ │ │ │ └── package.json │ │ │ │ ├── library-parallel-deps/ │ │ │ │ │ ├── .parcelrc │ │ │ │ │ ├── ParallelResolver.js │ │ │ │ │ ├── foo.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── markdown/ │ │ │ │ │ └── index.md │ │ │ │ ├── mdx/ │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── package.json │ │ │ │ ├── mdx-react-17/ │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── package.json │ │ │ │ ├── min-bundles/ │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ ├── bar.js │ │ │ │ │ ├── buzz.js │ │ │ │ │ ├── c.js │ │ │ │ │ ├── foo.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── local.html │ │ │ │ │ ├── package.json │ │ │ │ │ └── styles.css │ │ │ │ ├── monorepo/ │ │ │ │ │ ├── package.json │ │ │ │ │ └── packages/ │ │ │ │ │ ├── pkg-a/ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── src/ │ │ │ │ │ │ ├── alt.js │ │ │ │ │ │ └── index.js │ │ │ │ │ └── pkg-b/ │ │ │ │ │ ├── package.json │ │ │ │ │ └── src/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.module.css │ │ │ │ ├── monorepo-shared/ │ │ │ │ │ ├── package.json │ │ │ │ │ └── packages/ │ │ │ │ │ ├── pkg-a/ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── src/ │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── pkg-b/ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── src/ │ │ │ │ │ │ └── index.js │ │ │ │ │ └── shared/ │ │ │ │ │ ├── package.json │ │ │ │ │ └── src/ │ │ │ │ │ └── index.module.css │ │ │ │ ├── multi-asset-transformer/ │ │ │ │ │ ├── .babelrc │ │ │ │ │ ├── .parcelrc │ │ │ │ │ └── index.js │ │ │ │ ├── multi-asset-transformer-export/ │ │ │ │ │ ├── .parcelrc │ │ │ │ │ └── index.js │ │ │ │ ├── multi-css-bug/ │ │ │ │ │ └── src/ │ │ │ │ │ ├── Foo/ │ │ │ │ │ │ ├── foo.css │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── entry.js │ │ │ │ │ └── main.css │ │ │ │ ├── multi-css-multi-entry-bug/ │ │ │ │ │ └── src/ │ │ │ │ │ ├── Foo/ │ │ │ │ │ │ ├── foo.css │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── entry.js │ │ │ │ │ ├── index-sib.js │ │ │ │ │ └── main.css │ │ │ │ ├── multi-entry/ │ │ │ │ │ ├── one.html │ │ │ │ │ ├── shared.js │ │ │ │ │ └── two.html │ │ │ │ ├── multi-pipeline/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── style.css │ │ │ │ ├── multiple-empty-js-assets/ │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ └── index.js │ │ │ │ ├── multiple-import-types/ │ │ │ │ │ ├── dynamic-inline.js │ │ │ │ │ ├── dynamic-url.js │ │ │ │ │ ├── other.js │ │ │ │ │ ├── static-dynamic-url.js │ │ │ │ │ ├── static-dynamic.js │ │ │ │ │ └── static-inline.js │ │ │ │ ├── name-invalidation/ │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ └── index.js │ │ │ │ ├── namer-dir/ │ │ │ │ │ ├── package.json │ │ │ │ │ └── src/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── nested/ │ │ │ │ │ └── other.html │ │ │ │ ├── no-export-error-with-correct-filetype/ │ │ │ │ │ ├── package.json │ │ │ │ │ └── src/ │ │ │ │ │ ├── App.jsx │ │ │ │ │ └── app.module.css │ │ │ │ ├── no-shared-bundles-from-entries/ │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ └── package.json │ │ │ │ ├── node_hashbang/ │ │ │ │ │ ├── local.js │ │ │ │ │ ├── main.js │ │ │ │ │ └── package.json │ │ │ │ ├── node_require/ │ │ │ │ │ ├── local.js │ │ │ │ │ ├── main.js │ │ │ │ │ └── package.json │ │ │ │ ├── node_require_browser/ │ │ │ │ │ ├── local.js │ │ │ │ │ └── main.js │ │ │ │ ├── node_require_cache/ │ │ │ │ │ └── main.js │ │ │ │ ├── object-rest-spread/ │ │ │ │ │ └── object-rest-spread.js │ │ │ │ ├── optimizer-changing-type/ │ │ │ │ │ ├── .parcelrc │ │ │ │ │ └── index.js │ │ │ │ ├── optional-dep/ │ │ │ │ │ └── index.js │ │ │ │ ├── packager-global-this/ │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.js │ │ │ │ │ └── lazy.js │ │ │ │ ├── packager-loadBundleConfig/ │ │ │ │ │ ├── .parcelrc │ │ │ │ │ ├── a.txt │ │ │ │ │ ├── b.txt │ │ │ │ │ ├── index.2.html │ │ │ │ │ └── index.html │ │ │ │ ├── packager-loadConfig/ │ │ │ │ │ ├── .parcelrc │ │ │ │ │ ├── foo.config.json │ │ │ │ │ └── index.txt │ │ │ │ ├── parcel-register/ │ │ │ │ │ ├── .babelrc │ │ │ │ │ ├── dispose-resolve.js │ │ │ │ │ ├── dispose-transform.js │ │ │ │ │ ├── entry.js │ │ │ │ │ ├── foo.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── resolver.js │ │ │ │ ├── parcelrc-custom/ │ │ │ │ │ ├── .parcelrc │ │ │ │ │ ├── configCopy │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── parcelrc-monorepo/ │ │ │ │ │ ├── app/ │ │ │ │ │ │ ├── .parcelrc │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ └── package.json │ │ │ │ ├── parser-case-insensitive-ext/ │ │ │ │ │ ├── index.cSs │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.js │ │ │ │ │ └── other.HTM │ │ │ │ ├── pipeline-type-change/ │ │ │ │ │ ├── .parcelrc │ │ │ │ │ └── index.ini │ │ │ │ ├── pipeline-unknown/ │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ └── package.json │ │ │ │ ├── pnp-builtin/ │ │ │ │ │ ├── index.js │ │ │ │ │ ├── local.js │ │ │ │ │ └── pnp/ │ │ │ │ │ └── module/ │ │ │ │ │ └── index.js │ │ │ │ ├── pnp-require/ │ │ │ │ │ ├── index.js │ │ │ │ │ ├── local.js │ │ │ │ │ └── pnp/ │ │ │ │ │ └── testmodule/ │ │ │ │ │ └── index.js │ │ │ │ ├── postcss-autoinstall/ │ │ │ │ │ ├── npm/ │ │ │ │ │ │ ├── .postcssrc │ │ │ │ │ │ ├── .yarnrc.yml │ │ │ │ │ │ ├── index.css │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── postcss-test/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ └── yarn/ │ │ │ │ │ ├── .postcssrc │ │ │ │ │ ├── index.css │ │ │ │ │ └── package.json │ │ │ │ ├── postcss-composes/ │ │ │ │ │ ├── composes-1.module.css │ │ │ │ │ ├── composes-2.module.css │ │ │ │ │ ├── composes-3.module.css │ │ │ │ │ ├── composes-4.module.css │ │ │ │ │ ├── composes-5.module.css │ │ │ │ │ ├── composes-6.module.css │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index2.js │ │ │ │ │ ├── index3.js │ │ │ │ │ ├── index4.js │ │ │ │ │ ├── index5.js │ │ │ │ │ ├── mixins-intermediate.module.css │ │ │ │ │ ├── mixins.module.css │ │ │ │ │ ├── mixins.module.scss │ │ │ │ │ └── package.json │ │ │ │ ├── postcss-config-package/ │ │ │ │ │ ├── package.json │ │ │ │ │ └── style.css │ │ │ │ ├── postcss-dir-dependency/ │ │ │ │ │ ├── .postcssrc │ │ │ │ │ ├── backgrounds/ │ │ │ │ │ │ ├── green.txt │ │ │ │ │ │ └── red.txt │ │ │ │ │ ├── index.css │ │ │ │ │ └── plugin.js │ │ │ │ ├── postcss-esm-config/ │ │ │ │ │ ├── postcss.config.mjs │ │ │ │ │ └── style.css │ │ │ │ ├── postcss-import/ │ │ │ │ │ ├── .postcssrc │ │ │ │ │ ├── config.css │ │ │ │ │ ├── nested/ │ │ │ │ │ │ └── index.css │ │ │ │ │ ├── package.json │ │ │ │ │ └── style.css │ │ │ │ ├── postcss-js-config-7/ │ │ │ │ │ ├── postcss.config.js │ │ │ │ │ └── style.css │ │ │ │ ├── postcss-js-config-8/ │ │ │ │ │ ├── postcss.config.js │ │ │ │ │ └── style.css │ │ │ │ ├── postcss-modules-cjs/ │ │ │ │ │ ├── foo.module.css │ │ │ │ │ ├── index.css │ │ │ │ │ └── index.js │ │ │ │ ├── postcss-modules-config/ │ │ │ │ │ ├── .postcssrc │ │ │ │ │ ├── foo.css │ │ │ │ │ ├── foo.js │ │ │ │ │ ├── index.css │ │ │ │ │ └── index.js │ │ │ │ ├── postcss-modules-config-invalid/ │ │ │ │ │ ├── .postcssrc │ │ │ │ │ └── src/ │ │ │ │ │ └── index.css │ │ │ │ ├── postcss-modules-config-package/ │ │ │ │ │ ├── foo.css │ │ │ │ │ ├── foo.js │ │ │ │ │ ├── index.css │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── postcss-modules-import-default/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── style.module.css │ │ │ │ ├── postcss-modules-import-namespace/ │ │ │ │ │ ├── global.css │ │ │ │ │ ├── index.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── style.module.css │ │ │ │ ├── postcss-modules-import-namespace-whole/ │ │ │ │ │ ├── global.css │ │ │ │ │ ├── index.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── style.module.css │ │ │ │ ├── postcss-modules-optimize/ │ │ │ │ │ ├── .postcssrc │ │ │ │ │ ├── index.css │ │ │ │ │ └── index.js │ │ │ │ ├── postcss-package-config/ │ │ │ │ │ ├── package.json │ │ │ │ │ └── style.css │ │ │ │ ├── postcss-plugins/ │ │ │ │ │ ├── .postcssrc.json │ │ │ │ │ ├── index.css │ │ │ │ │ ├── index.js │ │ │ │ │ └── index2.js │ │ │ │ ├── postcss-plugins-decl/ │ │ │ │ │ ├── index.css │ │ │ │ │ └── postcss.config.js │ │ │ │ ├── posthtml/ │ │ │ │ │ ├── .posthtmlrc.js │ │ │ │ │ ├── index.html │ │ │ │ │ └── other.html │ │ │ │ ├── posthtml-assets/ │ │ │ │ │ ├── .posthtmlrc.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.js │ │ │ │ │ └── other.html │ │ │ │ ├── posthtml-autoinstall/ │ │ │ │ │ ├── .posthtmlrc │ │ │ │ │ ├── .yarnrc.yml │ │ │ │ │ ├── index.html │ │ │ │ │ ├── package.json │ │ │ │ │ └── posthtml-test/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── posthtml-plugin-deps/ │ │ │ │ │ ├── base.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── posthtml.config.js │ │ │ │ ├── posthtml-plugins/ │ │ │ │ │ ├── .posthtmlrc │ │ │ │ │ └── index.html │ │ │ │ ├── process/ │ │ │ │ │ └── index.js │ │ │ │ ├── proxyrc/ │ │ │ │ │ ├── .proxyrc │ │ │ │ │ └── index.js │ │ │ │ ├── proxyrc-cjs/ │ │ │ │ │ ├── .proxyrc.cjs │ │ │ │ │ └── index.js │ │ │ │ ├── proxyrc-js/ │ │ │ │ │ ├── .proxyrc.js │ │ │ │ │ └── index.js │ │ │ │ ├── proxyrc-json/ │ │ │ │ │ ├── .proxyrc.json │ │ │ │ │ └── index.js │ │ │ │ ├── proxyrc-mjs/ │ │ │ │ │ ├── .proxyrc.mjs │ │ │ │ │ └── index.js │ │ │ │ ├── proxyrc-ts/ │ │ │ │ │ ├── .proxyrc.ts │ │ │ │ │ └── index.js │ │ │ │ ├── pug/ │ │ │ │ │ ├── index.css │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.pug │ │ │ │ ├── pug-filters/ │ │ │ │ │ ├── .pugrc.js │ │ │ │ │ └── index.pug │ │ │ │ ├── pug-include-extends/ │ │ │ │ │ ├── absolute/ │ │ │ │ │ │ └── nested.pug │ │ │ │ │ ├── base.pug │ │ │ │ │ ├── index.pug │ │ │ │ │ └── other.pug │ │ │ │ ├── pug-locals/ │ │ │ │ │ ├── .pugrc │ │ │ │ │ └── index.pug │ │ │ │ ├── pug-minify/ │ │ │ │ │ └── index.pug │ │ │ │ ├── pug-mixins/ │ │ │ │ │ ├── index.pug │ │ │ │ │ └── mixins.pug │ │ │ │ ├── pug-var/ │ │ │ │ │ └── index.pug │ │ │ │ ├── re-export-no-scope-hoist/ │ │ │ │ │ ├── package.json │ │ │ │ │ └── test.js │ │ │ │ ├── react-refresh/ │ │ │ │ │ ├── App.js │ │ │ │ │ ├── Foo.1.js │ │ │ │ │ ├── Foo.2-hooks.js │ │ │ │ │ ├── Foo.3-class.js │ │ │ │ │ ├── Foo.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── react-refresh-automatic/ │ │ │ │ │ ├── App.js │ │ │ │ │ ├── Foo.1.js │ │ │ │ │ ├── Foo.js │ │ │ │ │ ├── hooks.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── react-refresh-circular/ │ │ │ │ │ ├── App.js │ │ │ │ │ ├── Consumer.js │ │ │ │ │ ├── Provider.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── react-refresh-inline-script/ │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── react-refresh-lazy-child/ │ │ │ │ │ ├── App.js │ │ │ │ │ ├── Async.1.js │ │ │ │ │ ├── Async.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── react-refresh-library-target/ │ │ │ │ │ ├── Component.jsx │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── reason/ │ │ │ │ │ ├── index.js │ │ │ │ │ ├── local.bs.js │ │ │ │ │ └── local.re │ │ │ │ ├── reporters-failure/ │ │ │ │ │ ├── .parcelrc │ │ │ │ │ ├── index.js │ │ │ │ │ └── test-reporter/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── reporters-load-failure/ │ │ │ │ │ ├── .parcelrc │ │ │ │ │ └── index.js │ │ │ │ ├── reporters-success/ │ │ │ │ │ ├── .parcelrc │ │ │ │ │ ├── index.js │ │ │ │ │ └── test-reporter/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── require-async/ │ │ │ │ │ ├── async.js │ │ │ │ │ ├── parcel.js │ │ │ │ │ ├── resolve-chain.js │ │ │ │ │ ├── rollup.js │ │ │ │ │ ├── sync.js │ │ │ │ │ ├── ts-interop-arrow.js │ │ │ │ │ ├── ts-interop.js │ │ │ │ │ └── ts.js │ │ │ │ ├── require-scope/ │ │ │ │ │ └── index.js │ │ │ │ ├── resolve-empty-specifier/ │ │ │ │ │ └── index.js │ │ │ │ ├── resolve-entries/ │ │ │ │ │ ├── .eslintrc.json │ │ │ │ │ ├── both-fields.js │ │ │ │ │ ├── browser-multiple.js │ │ │ │ │ ├── browser.js │ │ │ │ │ ├── ignore-fs.js │ │ │ │ │ ├── jsnext-field.js │ │ │ │ │ ├── main-field.js │ │ │ │ │ ├── module-field.js │ │ │ │ │ ├── pkg-both/ │ │ │ │ │ │ ├── es6.module.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── pkg-browser/ │ │ │ │ │ │ ├── browser-module.js │ │ │ │ │ │ ├── node-module.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── pkg-browser-multiple/ │ │ │ │ │ │ ├── browser-entry.js │ │ │ │ │ │ ├── node-entry.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── projected-browser.js │ │ │ │ │ │ └── projected.js │ │ │ │ │ ├── pkg-es6-module/ │ │ │ │ │ │ ├── es6.module.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── pkg-ignore-browser/ │ │ │ │ │ │ ├── ignore-me-in-browsers.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── pkg-ignore-fs/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── pkg-jsnext-module/ │ │ │ │ │ │ ├── jsnext.module.js │ │ │ │ │ │ └── package.json │ │ │ │ │ └── pkg-main/ │ │ │ │ │ ├── main.js │ │ │ │ │ └── package.json │ │ │ │ ├── resolve-exports/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── resolve-index-fallback/ │ │ │ │ │ ├── incorrect-entry-fallback/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── incorrect-entry.js │ │ │ │ │ ├── no-entry-fallback/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ └── no-entry.js │ │ │ │ ├── resolve-mode-condition/ │ │ │ │ │ ├── default.js │ │ │ │ │ ├── dev.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── prod.js │ │ │ │ ├── resolve-node-prefix/ │ │ │ │ │ ├── package.json │ │ │ │ │ └── src/ │ │ │ │ │ └── index.js │ │ │ │ ├── resolve-spaces/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── other page.html │ │ │ │ ├── resolve-symlinked-monorepos/ │ │ │ │ │ ├── packages/ │ │ │ │ │ │ ├── app/ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ └── library/ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── src/ │ │ │ │ │ │ └── index.js │ │ │ │ │ └── pnpm-workspace.yaml │ │ │ │ ├── resolve-symlinked-node_modules-structure/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── resolve-tilde-monorepo/ │ │ │ │ │ ├── client/ │ │ │ │ │ │ ├── other.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── src/ │ │ │ │ │ │ └── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── resolve-tilde-nodemodules/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── resolver-alternative-module/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── resolver-alternative-relative/ │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── test/ │ │ │ │ │ └── test.js │ │ │ │ ├── resolver-can-invalidateonenvchange/ │ │ │ │ │ ├── .parcelrc │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── resolver-canDefer/ │ │ │ │ │ ├── .parcelrc │ │ │ │ │ ├── index.js │ │ │ │ │ └── library/ │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ ├── c.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── resolver-dependency-meta/ │ │ │ │ │ ├── .parcelrc │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ └── package.json │ │ │ │ ├── resolver-invalid-pkgjson/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── runtime-deferred-excluded/ │ │ │ │ │ ├── .parcelrc │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── runtime-symbol-merging/ │ │ │ │ │ ├── .parcelrc │ │ │ │ │ └── entry.js │ │ │ │ ├── runtime-update/ │ │ │ │ │ ├── .parcelrc │ │ │ │ │ ├── dynamic-runtime.js │ │ │ │ │ └── src/ │ │ │ │ │ └── index.js │ │ │ │ ├── rust/ │ │ │ │ │ ├── .eslintrc │ │ │ │ │ ├── add.rs │ │ │ │ │ └── index.js │ │ │ │ ├── rust-cargo/ │ │ │ │ │ ├── .eslintrc │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── lib.rs │ │ │ │ ├── rust-cargo-workspace/ │ │ │ │ │ ├── .eslintrc │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── member/ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── lib.rs │ │ │ │ ├── rust-deps/ │ │ │ │ │ ├── .eslintrc │ │ │ │ │ ├── add.rs │ │ │ │ │ ├── index.js │ │ │ │ │ └── test.rs │ │ │ │ ├── same-contents-different-filepaths/ │ │ │ │ │ ├── index.js │ │ │ │ │ ├── path1/ │ │ │ │ │ │ └── a.js │ │ │ │ │ └── path2/ │ │ │ │ │ └── a.js │ │ │ │ ├── same-dependency-multiple-times/ │ │ │ │ │ ├── a1.js │ │ │ │ │ ├── a2.js │ │ │ │ │ └── b.js │ │ │ │ ├── same-resource-multiple-bundles/ │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── resource.txt │ │ │ │ │ └── shared.js │ │ │ │ ├── sass/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.sass │ │ │ │ ├── sass-advanced-import/ │ │ │ │ │ ├── _foo.sass │ │ │ │ │ ├── bar.sass │ │ │ │ │ ├── index.sass │ │ │ │ │ └── package.json │ │ │ │ ├── sass-exports/ │ │ │ │ │ ├── index.sass │ │ │ │ │ └── package.json │ │ │ │ ├── sass-include-paths-import/ │ │ │ │ │ ├── .sassrc.js │ │ │ │ │ ├── include-path/ │ │ │ │ │ │ └── style.sass │ │ │ │ │ ├── index.sass │ │ │ │ │ └── package.json │ │ │ │ ├── sass-load-paths-import/ │ │ │ │ │ ├── .sassrc.js │ │ │ │ │ ├── include-path/ │ │ │ │ │ │ └── style.sass │ │ │ │ │ ├── index.sass │ │ │ │ │ └── package.json │ │ │ │ ├── sass-node-modules-import/ │ │ │ │ │ ├── index.sass │ │ │ │ │ └── package.json │ │ │ │ ├── sass-webpack-import-error/ │ │ │ │ │ ├── index.sass │ │ │ │ │ └── package.json │ │ │ │ ├── schema-jsonld/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── other.css │ │ │ │ ├── scope-hoisting/ │ │ │ │ │ ├── commonjs/ │ │ │ │ │ │ ├── browserify-compat/ │ │ │ │ │ │ │ ├── browserify-bundle.js │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── concat-order/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── b.js │ │ │ │ │ │ ├── concat-order-globals/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── b.js │ │ │ │ │ │ ├── conditional-import-reference/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── default-import/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── b.js │ │ │ │ │ │ ├── define-exports/ │ │ │ │ │ │ │ └── a.js │ │ │ │ │ │ ├── eliminate-exports/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── b.js │ │ │ │ │ │ ├── empty-module/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── b.js │ │ │ │ │ │ ├── es6-commonjs-hybrid/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── b.js │ │ │ │ │ │ ├── export-assign-scope/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── b.js │ │ │ │ │ │ ├── export-local/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── b.js │ │ │ │ │ │ ├── export-non-object/ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── other.js │ │ │ │ │ │ ├── export-order/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── b.js │ │ │ │ │ │ ├── exports-access-bailout/ │ │ │ │ │ │ │ ├── exports-assign-entry.js │ │ │ │ │ │ │ ├── exports-assign-imported.js │ │ │ │ │ │ │ ├── exports-assign-reexport-entry.js │ │ │ │ │ │ │ ├── exports-assign-reexport.js │ │ │ │ │ │ │ ├── exports-assign.js │ │ │ │ │ │ │ ├── exports-define-entry.js │ │ │ │ │ │ │ ├── exports-define-imported.js │ │ │ │ │ │ │ ├── exports-define.js │ │ │ │ │ │ │ ├── module-exports-assign-entry.js │ │ │ │ │ │ │ ├── module-exports-assign-imported.js │ │ │ │ │ │ │ ├── module-exports-assign.js │ │ │ │ │ │ │ ├── module-exports-define-entry.js │ │ │ │ │ │ │ ├── module-exports-define-imported.js │ │ │ │ │ │ │ └── module-exports-define.js │ │ │ │ │ │ ├── exports-before-module-exports/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── b.js │ │ │ │ │ │ ├── exports-self-reference/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── exports-this/ │ │ │ │ │ │ │ └── a.js │ │ │ │ │ │ ├── globals-polyfills/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── import-namespace/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── b.js │ │ │ │ │ │ ├── interop-commonjs-hybrid/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── b.js │ │ │ │ │ │ ├── interop-commonjs-hybrid-dynamic/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── b.js │ │ │ │ │ │ ├── interop-require-commonjs/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── b.js │ │ │ │ │ │ ├── interop-require-commonjs-wrapped/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── b.js │ │ │ │ │ │ ├── interop-require-es-module/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── b.js │ │ │ │ │ │ ├── interop-require-es-module-code-split/ │ │ │ │ │ │ │ ├── import.js │ │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ │ ├── shared.js │ │ │ │ │ │ │ └── shared_sub.js │ │ │ │ │ │ ├── interop-require-es-module-code-split-intermediate/ │ │ │ │ │ │ │ ├── import.js │ │ │ │ │ │ │ ├── import_child.js │ │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ │ ├── main_child.js │ │ │ │ │ │ │ ├── shared.js │ │ │ │ │ │ │ └── shared_sub.js │ │ │ │ │ │ ├── keep-local-function-var/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ │ └── c.js │ │ │ │ │ │ ├── live-bindings/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── b.js │ │ │ │ │ │ ├── missing-non-js/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── index.css │ │ │ │ │ │ ├── module-exports-before-exports/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── b.js │ │ │ │ │ │ ├── module-exports-default-assignment/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── module-exports-self-reference/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── module-object/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── module-require/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── b.js │ │ │ │ │ │ ├── multi-assign/ │ │ │ │ │ │ │ └── a.js │ │ │ │ │ │ ├── mutated-exports-mixed-module/ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── value.js │ │ │ │ │ │ ├── mutated-exports-object-different/ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── mutates.js │ │ │ │ │ │ │ └── value.js │ │ │ │ │ │ ├── mutated-exports-object-expression/ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── value.js │ │ │ │ │ │ ├── mutated-exports-object-importer/ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── value.js │ │ │ │ │ │ ├── mutated-non-static-require/ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── other.js │ │ │ │ │ │ ├── named-import/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── b.js │ │ │ │ │ │ ├── non-identifier-symbol-name/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── b.js │ │ │ │ │ │ ├── non-static-exports/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── b.js │ │ │ │ │ │ ├── object-pattern/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── re-export-var/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ │ └── c.js │ │ │ │ │ │ ├── require/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── b.js │ │ │ │ │ │ ├── require-assign/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── b.js │ │ │ │ │ │ ├── require-circular/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── b.js │ │ │ │ │ │ ├── require-conditional/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ │ └── c.js │ │ │ │ │ │ ├── require-css/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── b.css │ │ │ │ │ │ ├── require-default-export-declaration/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── b.js │ │ │ │ │ │ ├── require-default-export-expression/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── b.js │ │ │ │ │ │ ├── require-default-export-variable/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── b.js │ │ │ │ │ │ ├── require-execution-order/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ │ └── c.js │ │ │ │ │ │ ├── require-extensions/ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── require-in-function/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── b.js │ │ │ │ │ │ ├── require-in-function-import/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ │ └── c.js │ │ │ │ │ │ ├── require-in-function-import-hoist/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ │ └── c.js │ │ │ │ │ │ ├── require-in-function-reexport/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ │ └── c.js │ │ │ │ │ │ ├── require-local-assign/ │ │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ │ ├── basic.js │ │ │ │ │ │ │ ├── destructure.js │ │ │ │ │ │ │ ├── in-function.js │ │ │ │ │ │ │ └── member.js │ │ │ │ │ │ ├── require-member-wrapped/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ │ └── c.js │ │ │ │ │ │ ├── require-multiple/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ │ └── c.js │ │ │ │ │ │ ├── require-named-export-declaration/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── b.js │ │ │ │ │ │ ├── require-named-export-variable/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── b.js │ │ │ │ │ │ ├── require-new/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── b.js │ │ │ │ │ │ ├── require-non-const-export/ │ │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ │ ├── destructure.js │ │ │ │ │ │ │ ├── live.js │ │ │ │ │ │ │ └── member.js │ │ │ │ │ │ ├── require-re-export-all/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ │ └── c.js │ │ │ │ │ │ ├── require-re-export-default/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ │ └── c.js │ │ │ │ │ │ ├── require-re-export-exclude-default/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ │ └── c.js │ │ │ │ │ │ ├── require-re-export-multiple/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ │ ├── c.js │ │ │ │ │ │ │ └── d.js │ │ │ │ │ │ ├── require-re-export-named/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ │ └── c.js │ │ │ │ │ │ ├── require-re-export-namespace/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ │ └── c.js │ │ │ │ │ │ ├── require-renamed-export/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── b.js │ │ │ │ │ │ ├── require-resolve/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── b.js │ │ │ │ │ │ ├── require-resolve-excluded/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── require-self/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── b.js │ │ │ │ │ │ ├── self-reference-assignment/ │ │ │ │ │ │ │ └── a.js │ │ │ │ │ │ ├── self-reference-default/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── b.js │ │ │ │ │ │ ├── side-effects-false/ │ │ │ │ │ │ │ └── a.js │ │ │ │ │ │ ├── stream-module/ │ │ │ │ │ │ │ └── a.js │ │ │ │ │ │ ├── this-arrow-function/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── this-reference/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── b.js │ │ │ │ │ │ ├── this-reference-wrapped/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── b.js │ │ │ │ │ │ ├── tree-shaking/ │ │ │ │ │ │ │ ├── .terserrc │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── b.js │ │ │ │ │ │ ├── tree-shaking-no-unknown-objects/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── tree-shaking-string/ │ │ │ │ │ │ │ ├── .terserrc │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ │ └── c.js │ │ │ │ │ │ ├── wrap-aliases/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── wrap-concat-order/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ │ └── c.js │ │ │ │ │ │ ├── wrap-default-interop/ │ │ │ │ │ │ │ ├── async.js │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── run-cjs.js │ │ │ │ │ │ │ ├── run-interop.js │ │ │ │ │ │ │ └── shared.js │ │ │ │ │ │ ├── wrap-deps-circular/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ │ ├── c.js │ │ │ │ │ │ │ ├── core.js │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── wrap-destructuring-array/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── wrap-destructuring-object/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── wrap-eval/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── b.js │ │ │ │ │ │ ├── wrap-expressions/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ │ └── require.js │ │ │ │ │ │ ├── wrap-interop-url-import/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ │ └── data.txt │ │ │ │ │ │ ├── wrap-module/ │ │ │ │ │ │ │ └── a.js │ │ │ │ │ │ ├── wrap-module-codesplit/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ │ └── c.js │ │ │ │ │ │ ├── wrap-module-computed/ │ │ │ │ │ │ │ └── a.js │ │ │ │ │ │ ├── wrap-module-obj-literal-require/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ │ └── c.js │ │ │ │ │ │ ├── wrap-optional/ │ │ │ │ │ │ │ └── a.js │ │ │ │ │ │ ├── wrap-return/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── b.js │ │ │ │ │ │ ├── wrap-typeof-require/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ │ └── c.js │ │ │ │ │ │ ├── wrap-unused/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ └── b.js │ │ │ │ │ │ └── wrap-var-hoisting/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ │ └── es6/ │ │ │ │ │ ├── ancestor-reexport/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── async.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ └── c.js │ │ │ │ │ ├── ancestor-reexport2/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── async.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ └── library/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ └── c.js │ │ │ │ │ ├── async-internalize-unused/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ └── c.js │ │ │ │ │ ├── async-interop-conditional/ │ │ │ │ │ │ ├── async.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── value.js │ │ │ │ │ ├── async-named-import-ns-reexport/ │ │ │ │ │ │ ├── async.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── ns.js │ │ │ │ │ │ └── reexports.js │ │ │ │ │ ├── cache-add-specifier/ │ │ │ │ │ │ ├── a.1.js │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ │ ├── circular/ │ │ │ │ │ │ ├── a.mjs │ │ │ │ │ │ ├── b.mjs │ │ │ │ │ │ └── c.mjs │ │ │ │ │ ├── circular-wrap/ │ │ │ │ │ │ ├── a.mjs │ │ │ │ │ │ ├── b.mjs │ │ │ │ │ │ ├── c.mjs │ │ │ │ │ │ ├── d.mjs │ │ │ │ │ │ └── index.mjs │ │ │ │ │ ├── circular2/ │ │ │ │ │ │ ├── a.mjs │ │ │ │ │ │ ├── b.mjs │ │ │ │ │ │ └── c.mjs │ │ │ │ │ ├── circular3/ │ │ │ │ │ │ ├── a.mjs │ │ │ │ │ │ ├── b.mjs │ │ │ │ │ │ ├── c.mjs │ │ │ │ │ │ └── d.mjs │ │ │ │ │ ├── class-selfreference/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── codesplit-reexports/ │ │ │ │ │ │ ├── library/ │ │ │ │ │ │ │ ├── bar.js │ │ │ │ │ │ │ ├── bar2.js │ │ │ │ │ │ │ ├── foo.js │ │ │ │ │ │ │ ├── foo2.js │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ └── src/ │ │ │ │ │ │ ├── async.js │ │ │ │ │ │ └── entry.js │ │ │ │ │ ├── commonjs-exports-reassign/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ │ ├── conditional-import-reference/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── conditional-import-side-effect-free-reexport/ │ │ │ │ │ │ ├── foo/ │ │ │ │ │ │ │ ├── bar.mjs │ │ │ │ │ │ │ ├── foo.mjs │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ └── index.mjs │ │ │ │ │ ├── default-export-anonymous/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ │ ├── default-export-class-rename/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── default-export-declaration/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ │ ├── default-export-expression/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ │ ├── default-export-variable/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ │ ├── double-esmodule/ │ │ │ │ │ │ ├── foo.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── dynamic-default-interop/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ └── shared.js │ │ │ │ │ ├── dynamic-import/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ └── c.js │ │ │ │ │ ├── dynamic-import-dynamic/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ └── c.js │ │ │ │ │ ├── empty-module/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ │ ├── empty-ts/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── lib.ts │ │ │ │ │ │ ├── test.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── export-before-declaration/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ │ ├── export-binding-identifiers/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ │ ├── export-default-class-wrapped/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ │ ├── export-default-function-wrapped/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ │ ├── export-default-global/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ │ ├── export-default-js-global/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ │ ├── export-default-live/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ │ ├── export-intermediate-wrapped-reexports/ │ │ │ │ │ │ ├── async.js │ │ │ │ │ │ ├── foo/ │ │ │ │ │ │ │ ├── bar.mjs │ │ │ │ │ │ │ ├── baz.mjs │ │ │ │ │ │ │ ├── foo.mjs │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── index.mjs │ │ │ │ │ ├── export-named-empty/ │ │ │ │ │ │ └── a.js │ │ │ │ │ ├── export-undefined/ │ │ │ │ │ │ └── a.js │ │ │ │ │ ├── import-commonjs-default/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── notwrapped.js │ │ │ │ │ │ └── wrapped.js │ │ │ │ │ ├── import-commonjs-export-individual/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ └── c.js │ │ │ │ │ ├── import-commonjs-export-individual-default/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b1.js │ │ │ │ │ │ ├── b2.js │ │ │ │ │ │ └── b3.js │ │ │ │ │ ├── import-commonjs-export-object/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ └── c.js │ │ │ │ │ ├── import-commonjs-export-object-default/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b1.js │ │ │ │ │ │ └── b2.js │ │ │ │ │ ├── import-commonjs-missing/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ │ ├── import-local-assign/ │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ ├── default.js │ │ │ │ │ │ ├── destructure-assign.js │ │ │ │ │ │ ├── multiple.js │ │ │ │ │ │ ├── named.js │ │ │ │ │ │ └── namespace.js │ │ │ │ │ ├── import-missing/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ │ ├── import-multiple-wildcards/ │ │ │ │ │ │ └── a.js │ │ │ │ │ ├── import-multiple-wrapped/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── import-namespace/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ │ ├── import-namespace-commonjs/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ └── c.js │ │ │ │ │ ├── import-namespace-commonjs-transpiled/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ └── c.js │ │ │ │ │ ├── import-namespace-external/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── import-namespace-sideEffects/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── other/ │ │ │ │ │ │ ├── exports.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── version.js │ │ │ │ │ │ └── version2.js │ │ │ │ │ ├── import-namespace-static-member/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ └── library/ │ │ │ │ │ │ ├── c1.js │ │ │ │ │ │ ├── c2.js │ │ │ │ │ │ ├── c3.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── import-namespace-wrapped/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ └── c.js │ │ │ │ │ ├── import-namespace-wrapped-self/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ │ ├── import-self/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ │ ├── import-wrapped/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ │ ├── import-wrapped-bundle-unused/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ └── c.js │ │ │ │ │ ├── interop-async/ │ │ │ │ │ │ ├── client.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── viewer.js │ │ │ │ │ ├── interop-pure/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ │ ├── jsx-pragma/ │ │ │ │ │ │ ├── .babelrc │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── react.js │ │ │ │ │ ├── live-bindings/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ │ ├── live-bindings-cross-bundle/ │ │ │ │ │ │ ├── a.html │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.html │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ ├── library/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── live-bindings-reexports-namespace/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ └── c.js │ │ │ │ │ ├── multi-entry-duplicates/ │ │ │ │ │ │ ├── one.js │ │ │ │ │ │ ├── shared.js │ │ │ │ │ │ └── two.js │ │ │ │ │ ├── multi-export/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ │ ├── multiple-ancestors-wrap/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── shouldBeWrapped.js │ │ │ │ │ │ └── wraps.js │ │ │ │ │ ├── name-clash/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ │ ├── named-export-declaration/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ │ ├── named-export-variable/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ │ ├── named-export-variable-rename/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ │ ├── named-export-variable-rename-wrapped/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ │ ├── no-reexport-default/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── async.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ ├── c.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── no-reexport-esmodule/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── async.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── non-ascii-identifiers/ │ │ │ │ │ │ └── a.js │ │ │ │ │ ├── non-deterministic-bundle-hashes/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── library/ │ │ │ │ │ │ │ ├── bar.js │ │ │ │ │ │ │ ├── foo.js │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ └── utils/ │ │ │ │ │ │ ├── bag.js │ │ │ │ │ │ ├── empty.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── non-identifier-symbol-name/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ │ ├── pure-assignment/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ │ ├── raw-url/ │ │ │ │ │ │ ├── index-import.js │ │ │ │ │ │ ├── index-reexport.js │ │ │ │ │ │ └── reexports.js │ │ │ │ │ ├── re-export-all/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ └── c.js │ │ │ │ │ ├── re-export-all-ambiguous/ │ │ │ │ │ │ ├── entry.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── lib-a.js │ │ │ │ │ │ ├── lib-b.js │ │ │ │ │ │ ├── lib-c.js │ │ │ │ │ │ ├── lib-c2.js │ │ │ │ │ │ ├── lib.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── re-export-all-empty-no-side-effects/ │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── re-export-all-external/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── re-export-all-fallback-1/ │ │ │ │ │ │ ├── empty.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── lib.js │ │ │ │ │ │ ├── mergeWith.js │ │ │ │ │ │ └── other.js │ │ │ │ │ ├── re-export-all-fallback-2/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── lib.js │ │ │ │ │ ├── re-export-all-fallback-3/ │ │ │ │ │ │ ├── async.js │ │ │ │ │ │ ├── entry.js │ │ │ │ │ │ ├── foo.js │ │ │ │ │ │ ├── other/ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── re-exports.js │ │ │ │ │ │ ├── rest/ │ │ │ │ │ │ │ ├── bar.js │ │ │ │ │ │ │ ├── hello.js │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── myString.js │ │ │ │ │ │ └── stuff.js │ │ │ │ │ ├── re-export-all-fallback-nested/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ ├── c.js │ │ │ │ │ │ ├── d.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── lib.js │ │ │ │ │ │ ├── lib1.js │ │ │ │ │ │ └── lib2.js │ │ │ │ │ ├── re-export-all-multiple/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ ├── c.js │ │ │ │ │ │ └── d.js │ │ │ │ │ ├── re-export-all-override/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ ├── c.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── re-export-bundle-boundary/ │ │ │ │ │ │ ├── async.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── switcher/ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ └── types/ │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── re-export-bundle-boundary-side-effects/ │ │ │ │ │ │ ├── async.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── switcher/ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ └── types/ │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── re-export-bundle-boundary2/ │ │ │ │ │ │ ├── async.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── library/ │ │ │ │ │ │ ├── components.js │ │ │ │ │ │ ├── constants.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── re-export-bundle-boundary3/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── media-card/ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ └── theme/ │ │ │ │ │ │ ├── components.js │ │ │ │ │ │ ├── createTheme.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── re-export-commonjs/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ └── c.js │ │ │ │ │ ├── re-export-commonjs-wildcard/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ ├── c.js │ │ │ │ │ │ └── d.js │ │ │ │ │ ├── re-export-default/ │ │ │ │ │ │ ├── .babelrc │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ └── c.js │ │ │ │ │ ├── re-export-default-hybrid/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ ├── c.js │ │ │ │ │ │ └── d.js │ │ │ │ │ ├── re-export-exclude-default/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ └── c.js │ │ │ │ │ ├── re-export-hybrid/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ ├── c.js │ │ │ │ │ │ └── d.js │ │ │ │ │ ├── re-export-import/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ ├── c.js │ │ │ │ │ │ ├── d.js │ │ │ │ │ │ ├── e.js │ │ │ │ │ │ └── e2.js │ │ │ │ │ ├── re-export-interop/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── en.json │ │ │ │ │ │ └── translations.js │ │ │ │ │ ├── re-export-missing/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ └── c.js │ │ │ │ │ ├── re-export-multiple/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ ├── c.js │ │ │ │ │ │ └── d.js │ │ │ │ │ ├── re-export-named/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ └── c.js │ │ │ │ │ ├── re-export-namespace/ │ │ │ │ │ │ ├── .babelrc │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ └── c.js │ │ │ │ │ ├── re-export-namespace-chained/ │ │ │ │ │ │ ├── .babelrc │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ ├── c1.js │ │ │ │ │ │ ├── c2.js │ │ │ │ │ │ └── d.js │ │ │ │ │ ├── re-export-namespace-order/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── library/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ └── other.js │ │ │ │ │ ├── re-export-priority/ │ │ │ │ │ │ ├── a.mjs │ │ │ │ │ │ ├── b.mjs │ │ │ │ │ │ ├── entry-a.mjs │ │ │ │ │ │ ├── entry-b.mjs │ │ │ │ │ │ ├── foo.mjs │ │ │ │ │ │ ├── namespace-a.mjs │ │ │ │ │ │ └── namespace-b.mjs │ │ │ │ │ ├── re-export-pseudo/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ └── c.js │ │ │ │ │ ├── re-export-renamed/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ └── c.js │ │ │ │ │ ├── re-export-renamed-namespace/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ └── c.js │ │ │ │ │ ├── re-export-renamed2/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ └── c.js │ │ │ │ │ ├── re-export-var/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ └── c.js │ │ │ │ │ ├── re-export-wrapped/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ ├── c.js │ │ │ │ │ │ └── d.js │ │ │ │ │ ├── re-export-wrapped-bailout/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ ├── c.js │ │ │ │ │ │ └── d.js │ │ │ │ │ ├── rename-helpers/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ ├── c.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── rename-member-prop/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ │ ├── rename-superclass/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ │ ├── renamed-export/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ │ ├── renamed-import/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ │ ├── retarget-namespace-single/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── library/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ ├── c.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── rewrite-export-star/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── library/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ ├── c.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── shared-bundle-reexport/ │ │ │ │ │ │ ├── index1.html │ │ │ │ │ │ ├── index1.js │ │ │ │ │ │ ├── index2.html │ │ │ │ │ │ ├── index2.js │ │ │ │ │ │ ├── index3.html │ │ │ │ │ │ ├── index3.js │ │ │ │ │ │ └── shared/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ │ ├── shared-bundle-side-effect-duplication/ │ │ │ │ │ │ ├── async1.js │ │ │ │ │ │ ├── async2.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── v.js │ │ │ │ │ ├── shared-bundle-side-effect-order/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── run1.js │ │ │ │ │ │ ├── run2.js │ │ │ │ │ │ ├── shared1.js │ │ │ │ │ │ └── shared2.js │ │ │ │ │ ├── sibling-dependencies/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── side-effects/ │ │ │ │ │ │ └── a.js │ │ │ │ │ ├── side-effects-array/ │ │ │ │ │ │ └── a.js │ │ │ │ │ ├── side-effects-chained-re-exports-multiple/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── library/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── message.js │ │ │ │ │ │ ├── message1.js │ │ │ │ │ │ ├── message2.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── symbol.js │ │ │ │ │ │ ├── symbol1.js │ │ │ │ │ │ └── symbol2.js │ │ │ │ │ ├── side-effects-commonjs/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ └── library/ │ │ │ │ │ │ ├── commonjs.js │ │ │ │ │ │ ├── esm.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── side-effects-css/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── library/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b1.css │ │ │ │ │ │ ├── b1.js │ │ │ │ │ │ ├── b2.css │ │ │ │ │ │ ├── b2.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── side-effects-export-reexport/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── library/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── other.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── side-effects-false/ │ │ │ │ │ │ └── a.js │ │ │ │ │ ├── side-effects-false-duplicate/ │ │ │ │ │ │ └── a.js │ │ │ │ │ ├── side-effects-false-order/ │ │ │ │ │ │ ├── foo/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ │ ├── c.js │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── w/ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ └── w.js │ │ │ │ │ │ └── x.js │ │ │ │ │ ├── side-effects-false-wildcards/ │ │ │ │ │ │ └── a.js │ │ │ │ │ ├── side-effects-false-wrap-excluded/ │ │ │ │ │ │ └── a.js │ │ │ │ │ ├── side-effects-no-new-bundle/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── library/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b1.js │ │ │ │ │ │ ├── b2.js │ │ │ │ │ │ ├── c.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── side-effects-package-redirect-down/ │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── side-effects-package-redirect-up/ │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── side-effects-re-exports/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ ├── c.js │ │ │ │ │ │ ├── d.js │ │ │ │ │ │ └── library/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── message1.js │ │ │ │ │ │ ├── message2.js │ │ │ │ │ │ ├── message3.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── side-effects-re-exports-all-empty/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── library/ │ │ │ │ │ │ ├── empty.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── side-effects-re-exports-chained/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── library/ │ │ │ │ │ │ ├── bar.js │ │ │ │ │ │ ├── foo.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── key.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── types.js │ │ │ │ │ ├── side-effects-re-exports-import/ │ │ │ │ │ │ └── a.js │ │ │ │ │ ├── side-effects-re-exports-import-different/ │ │ │ │ │ │ └── a.js │ │ │ │ │ ├── side-effects-re-exports-library/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ ├── c1.js │ │ │ │ │ │ ├── c2.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── side-effects-re-exports-multiple/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── library/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── message.js │ │ │ │ │ │ ├── message1.js │ │ │ │ │ │ ├── message2.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── side-effects-re-exports-multiple-dynamic/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ │ ├── side-effects-re-exports-namespace-same/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ ├── c.js │ │ │ │ │ │ └── library/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── other.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── side-effects-re-exports-partially-used/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── library/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ ├── dynamic.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── side-effects-re-exports-rename-chained/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── library/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index2.js │ │ │ │ │ │ ├── message.js │ │ │ │ │ │ ├── message1.js │ │ │ │ │ │ ├── message2.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── side-effects-re-exports-rename-same/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── library/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ ├── c.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── side-effects-re-exports-rename-same2/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ └── library/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── other.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── side-effects-re-exports-rename-var-unused/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── library/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── side-effects-semi-weak/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── library/ │ │ │ │ │ │ ├── esm1.js │ │ │ │ │ │ ├── esm2.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── other.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── side-effects-split/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ │ ├── side-effects-split2/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ │ ├── side-effects-update-deferred-direct/ │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── side-effects-update-deferred-reexported/ │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── tree-shaking/ │ │ │ │ │ │ ├── .terserrc │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ │ ├── tree-shaking-classes-babel/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── tree-shaking-cross-bundle/ │ │ │ │ │ │ ├── .terserrc │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b1.js │ │ │ │ │ │ ├── b2.js │ │ │ │ │ │ └── c.js │ │ │ │ │ ├── tree-shaking-cross-bundle-re-export/ │ │ │ │ │ │ ├── .terserrc │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b1.js │ │ │ │ │ │ ├── b2.js │ │ │ │ │ │ ├── c.js │ │ │ │ │ │ └── d.js │ │ │ │ │ ├── tree-shaking-cross-bundle-re-export-wildcard/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b1.js │ │ │ │ │ │ ├── b2.js │ │ │ │ │ │ ├── c.js │ │ │ │ │ │ └── d.js │ │ │ │ │ ├── tree-shaking-dynamic-import/ │ │ │ │ │ │ ├── .terserrc │ │ │ │ │ │ ├── a1.js │ │ │ │ │ │ ├── a2.js │ │ │ │ │ │ ├── async.js │ │ │ │ │ │ ├── await-assignment-error.js │ │ │ │ │ │ ├── await-assignment.js │ │ │ │ │ │ ├── await-declaration-error.js │ │ │ │ │ │ ├── await-declaration-namespace-bailout-eval.js │ │ │ │ │ │ ├── await-declaration-namespace-bailout.js │ │ │ │ │ │ ├── await-declaration-namespace-error.js │ │ │ │ │ │ ├── await-declaration-namespace.js │ │ │ │ │ │ ├── await-declaration.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── then-error.js │ │ │ │ │ │ ├── then-namespace-bailout.js │ │ │ │ │ │ ├── then-namespace-error.js │ │ │ │ │ │ ├── then-namespace.js │ │ │ │ │ │ └── then.js │ │ │ │ │ ├── tree-shaking-export-computed-prop/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ └── c.js │ │ │ │ │ ├── tree-shaking-functions/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ │ ├── tree-shaking-increment-object/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ │ ├── tree-shaking-multiassignment/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── b.js │ │ │ │ │ ├── tree-shaking-no-unknown-objects/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── unmarks-defer-for-assetgroup/ │ │ │ │ │ │ ├── index1.js │ │ │ │ │ │ ├── index2.js │ │ │ │ │ │ ├── index3.js │ │ │ │ │ │ └── package/ │ │ │ │ │ │ ├── bar.js │ │ │ │ │ │ ├── barer.js │ │ │ │ │ │ ├── foo.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── unmarks-defer-for-new-deps/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── package/ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ ├── b1.js │ │ │ │ │ │ │ ├── b2.js │ │ │ │ │ │ │ ├── c.js │ │ │ │ │ │ │ ├── d.js │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── unused-require/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── library/ │ │ │ │ │ │ ├── foo/ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── other.js │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── update-used-symbols-dependency-add/ │ │ │ │ │ │ ├── index.1.js │ │ │ │ │ │ ├── index.2.js │ │ │ │ │ │ ├── index.3.js │ │ │ │ │ │ └── library/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ ├── c.js │ │ │ │ │ │ ├── d1.js │ │ │ │ │ │ ├── d2.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── update-used-symbols-dependency-add-inline/ │ │ │ │ │ │ ├── .parcelrc │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── other.1.js │ │ │ │ │ │ ├── other.2.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── update-used-symbols-dependency-add-namespace/ │ │ │ │ │ │ ├── index.1.js │ │ │ │ │ │ ├── index.2.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── library/ │ │ │ │ │ │ ├── Toolbar.js │ │ │ │ │ │ ├── emoji.js │ │ │ │ │ │ ├── emojiStyles.js │ │ │ │ │ │ ├── emojiStylesShared.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── theme.js │ │ │ │ │ │ ├── themeColors.js │ │ │ │ │ │ └── themeConstants.js │ │ │ │ │ ├── update-used-symbols-dependency-symbols/ │ │ │ │ │ │ ├── index.1.js │ │ │ │ │ │ ├── index.2.js │ │ │ │ │ │ └── library/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ ├── c.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── update-used-symbols-remove-export/ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.1.js │ │ │ │ │ │ └── b.2.js │ │ │ │ │ ├── used-assignmentexpression/ │ │ │ │ │ │ └── a.js │ │ │ │ │ └── wrap-import-arrowfunction/ │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ └── package.json │ │ │ │ ├── scss/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.scss │ │ │ │ ├── scss-absolute-imports/ │ │ │ │ │ ├── b.scss │ │ │ │ │ └── style.scss │ │ │ │ ├── scss-empty/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.scss │ │ │ │ ├── scss-global-data/ │ │ │ │ │ ├── .sassrc.js │ │ │ │ │ ├── index.scss │ │ │ │ │ └── package.json │ │ │ │ ├── scss-html-import/ │ │ │ │ │ ├── package.json │ │ │ │ │ ├── style.scss │ │ │ │ │ ├── target1.html │ │ │ │ │ └── target2.html │ │ │ │ ├── scss-import/ │ │ │ │ │ ├── bar.scss │ │ │ │ │ ├── foo.scss │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.scss │ │ │ │ ├── scss-postcss/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.module.scss │ │ │ │ ├── scss-sourcemap-imports/ │ │ │ │ │ ├── style.scss │ │ │ │ │ └── with_url.scss │ │ │ │ ├── scss-url/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.scss │ │ │ │ ├── service-worker/ │ │ │ │ │ ├── a/ │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── b/ │ │ │ │ │ │ ├── nested/ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── worker-nested.js │ │ │ │ │ │ └── worker-outside.js │ │ │ │ │ ├── dynamic-import-index.js │ │ │ │ │ ├── dynamic-import.js │ │ │ │ │ ├── error.js │ │ │ │ │ ├── manifest-worker.js │ │ │ │ │ ├── manifest.js │ │ │ │ │ ├── module-worker.js │ │ │ │ │ ├── module.js │ │ │ │ │ └── scope.js │ │ │ │ ├── service-worker-import-meta-url/ │ │ │ │ │ ├── index.js │ │ │ │ │ ├── missing.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── worker.js │ │ │ │ ├── shared-bundle-between-reused-bundle-removal/ │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ ├── bar.js │ │ │ │ │ ├── buzz.js │ │ │ │ │ ├── c.js │ │ │ │ │ ├── foo.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── local.html │ │ │ │ │ ├── package.json │ │ │ │ │ └── styles.css │ │ │ │ ├── shared-bundle-internalization/ │ │ │ │ │ ├── a.mjs │ │ │ │ │ ├── async.mjs │ │ │ │ │ ├── b.mjs │ │ │ │ │ ├── imports-async.mjs │ │ │ │ │ ├── index.mjs │ │ │ │ │ ├── large.mjs │ │ │ │ │ └── package.json │ │ │ │ ├── shared-bundle-remove-from-one-group-only/ │ │ │ │ │ ├── bar.js │ │ │ │ │ ├── buzz.js │ │ │ │ │ ├── c.js │ │ │ │ │ ├── foo.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── local.html │ │ │ │ │ ├── package.json │ │ │ │ │ └── styles.css │ │ │ │ ├── shared-bundle-reused-bundle-remove-reuse/ │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ ├── bar.js │ │ │ │ │ ├── buzz.js │ │ │ │ │ ├── c.js │ │ │ │ │ ├── foo.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── local.html │ │ │ │ │ ├── package.json │ │ │ │ │ └── styles.css │ │ │ │ ├── shared-bundle-reused-bundle-remove-shared/ │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ ├── bar.js │ │ │ │ │ ├── buzz.js │ │ │ │ │ ├── c.js │ │ │ │ │ ├── foo.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── local.html │ │ │ │ │ ├── package.json │ │ │ │ │ └── styles.css │ │ │ │ ├── shared-bundle-single-source/ │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ ├── bar.js │ │ │ │ │ ├── foo.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── local.html │ │ │ │ │ ├── package.json │ │ │ │ │ └── styles.css │ │ │ │ ├── shared-bundlegroup/ │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ ├── c.js │ │ │ │ │ └── index.js │ │ │ │ ├── shared-exports-for-sibling-descendant/ │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ ├── child.js │ │ │ │ │ ├── grandchild.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── scope-hoisting.js │ │ │ │ │ └── wraps.js │ │ │ │ ├── shared-many/ │ │ │ │ │ ├── a.html │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.html │ │ │ │ │ ├── b.js │ │ │ │ │ ├── c.html │ │ │ │ │ ├── c.js │ │ │ │ │ ├── d.html │ │ │ │ │ ├── d.js │ │ │ │ │ ├── e.html │ │ │ │ │ ├── e.js │ │ │ │ │ ├── f.html │ │ │ │ │ ├── f.js │ │ │ │ │ ├── g.html │ │ │ │ │ ├── g.js │ │ │ │ │ └── package.json │ │ │ │ ├── shared-many-esm/ │ │ │ │ │ ├── a.html │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.html │ │ │ │ │ ├── b.js │ │ │ │ │ ├── c.html │ │ │ │ │ ├── c.js │ │ │ │ │ ├── d.html │ │ │ │ │ ├── d.js │ │ │ │ │ ├── e.html │ │ │ │ │ ├── e.js │ │ │ │ │ ├── f.html │ │ │ │ │ ├── f.js │ │ │ │ │ ├── g.html │ │ │ │ │ └── g.js │ │ │ │ ├── shared-sibling/ │ │ │ │ │ ├── a.js │ │ │ │ │ ├── a.module.css │ │ │ │ │ ├── b.js │ │ │ │ │ ├── form.html │ │ │ │ │ ├── form.js │ │ │ │ │ ├── searchfield.html │ │ │ │ │ ├── searchfield.js │ │ │ │ │ ├── searchfield2.html │ │ │ │ │ └── searchfield2.js │ │ │ │ ├── shared-sibling-common-dependency/ │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.css │ │ │ │ │ ├── b.js │ │ │ │ │ └── index.js │ │ │ │ ├── shared-sibling-duplicate/ │ │ │ │ │ ├── a.html │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.html │ │ │ │ │ ├── b.js │ │ │ │ │ ├── c.html │ │ │ │ │ └── c.js │ │ │ │ ├── shared-sibling-entries/ │ │ │ │ │ ├── a.html │ │ │ │ │ ├── b.html │ │ │ │ │ ├── c.html │ │ │ │ │ ├── other.css │ │ │ │ │ ├── package.json │ │ │ │ │ ├── shared.css │ │ │ │ │ └── shared.js │ │ │ │ ├── shared-sibling-entries-multiple/ │ │ │ │ │ ├── a.css │ │ │ │ │ ├── a.html │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.css │ │ │ │ │ ├── b.html │ │ │ │ │ ├── b.js │ │ │ │ │ └── package.json │ │ │ │ ├── shared-sibling-scope-hoist/ │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ ├── c.js │ │ │ │ │ └── index.js │ │ │ │ ├── shared-sibling-worker-css/ │ │ │ │ │ ├── a.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.js │ │ │ │ │ ├── style.css │ │ │ │ │ └── worker.js │ │ │ │ ├── sibling-deduplicate-unreachable/ │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ ├── c.js │ │ │ │ │ ├── common.js │ │ │ │ │ ├── d.js │ │ │ │ │ ├── foo.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── intermediate-2.js │ │ │ │ │ ├── intermediate-3.js │ │ │ │ │ ├── intermediate.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── unreachable.js │ │ │ │ ├── side-effects-false/ │ │ │ │ │ ├── import-require.js │ │ │ │ │ └── import.js │ │ │ │ ├── sourcemap/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── sourcemap-comments/ │ │ │ │ │ └── index.js │ │ │ │ ├── sourcemap-css/ │ │ │ │ │ ├── package.json │ │ │ │ │ └── style.css │ │ │ │ ├── sourcemap-css-existing/ │ │ │ │ │ ├── style.css │ │ │ │ │ └── test/ │ │ │ │ │ ├── library.css │ │ │ │ │ └── library.raw.scss │ │ │ │ ├── sourcemap-css-import/ │ │ │ │ │ ├── another-style.css │ │ │ │ │ ├── other-style.css │ │ │ │ │ ├── package.json │ │ │ │ │ └── style.css │ │ │ │ ├── sourcemap-existing/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── sum.js │ │ │ │ ├── sourcemap-external-contents/ │ │ │ │ │ ├── index.js │ │ │ │ │ ├── sum.coffee │ │ │ │ │ └── sum.js │ │ │ │ ├── sourcemap-generate-inline/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── sourcemap-inline/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── sum.js │ │ │ │ ├── sourcemap-inline-sources/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── sourcemap-invalid-existing/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── sum.js │ │ │ │ ├── sourcemap-less/ │ │ │ │ │ ├── package.json │ │ │ │ │ └── style.less │ │ │ │ ├── sourcemap-nested/ │ │ │ │ │ ├── index.js │ │ │ │ │ ├── local.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── utils/ │ │ │ │ │ └── util.js │ │ │ │ ├── sourcemap-nested-minified/ │ │ │ │ │ ├── index.js │ │ │ │ │ ├── local.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── utils/ │ │ │ │ │ └── util.js │ │ │ │ ├── sourcemap-node/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── sourcemap-original-sourcecontents/ │ │ │ │ │ ├── .babelrc │ │ │ │ │ └── index.js │ │ │ │ ├── sourcemap-original-sourcecontents-ts/ │ │ │ │ │ ├── .babelrc │ │ │ │ │ └── index.tsx │ │ │ │ ├── sourcemap-reference/ │ │ │ │ │ ├── data.js │ │ │ │ │ ├── index.html │ │ │ │ │ └── index.js │ │ │ │ ├── sourcemap-sass/ │ │ │ │ │ ├── package.json │ │ │ │ │ └── style.scss │ │ │ │ ├── sourcemap-sass-imported/ │ │ │ │ │ ├── other.scss │ │ │ │ │ ├── package.json │ │ │ │ │ └── style.css │ │ │ │ ├── sourcemap-sourcemappingurl/ │ │ │ │ │ └── index.js │ │ │ │ ├── sourcemap-sourcemappingurl-multiple-entrypoints/ │ │ │ │ │ ├── a/ │ │ │ │ │ │ └── index.js │ │ │ │ │ └── b/ │ │ │ │ │ └── index.js │ │ │ │ ├── sourcemap-typescript/ │ │ │ │ │ ├── index.ts │ │ │ │ │ └── package.json │ │ │ │ ├── sourcemap-typescript-nested/ │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── local.ts │ │ │ │ │ └── package.json │ │ │ │ ├── sourcemap-typescript-tsc/ │ │ │ │ │ ├── .parcelrc │ │ │ │ │ ├── package.json │ │ │ │ │ └── src/ │ │ │ │ │ └── index.ts │ │ │ │ ├── stylus/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.styl │ │ │ │ ├── stylus-deps/ │ │ │ │ │ ├── .stylusrc.js │ │ │ │ │ ├── deps/ │ │ │ │ │ │ └── a.styl │ │ │ │ │ ├── global/ │ │ │ │ │ │ └── b.styl │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.styl │ │ │ │ ├── stylus-exports/ │ │ │ │ │ ├── index.styl │ │ │ │ │ └── package.json │ │ │ │ ├── stylus-glob-import/ │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.styl │ │ │ │ │ └── subdir/ │ │ │ │ │ ├── bar/ │ │ │ │ │ │ └── bar.styl │ │ │ │ │ ├── foo/ │ │ │ │ │ │ └── foo.styl │ │ │ │ │ └── main.styl │ │ │ │ ├── stylus-id-url/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.styl │ │ │ │ ├── stylus-postcss/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.module.styl │ │ │ │ ├── stylus-url/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.styl │ │ │ │ ├── sugarss/ │ │ │ │ │ └── index.sss │ │ │ │ ├── svg/ │ │ │ │ │ ├── module.js │ │ │ │ │ ├── other1.html │ │ │ │ │ ├── other2.html │ │ │ │ │ ├── script.js │ │ │ │ │ └── style.css │ │ │ │ ├── svg-inline-css-import/ │ │ │ │ │ └── test.css │ │ │ │ ├── svg-multiple/ │ │ │ │ │ └── index.js │ │ │ │ ├── svg-react/ │ │ │ │ │ ├── index.html │ │ │ │ │ ├── package.json │ │ │ │ │ └── react.js │ │ │ │ ├── svg-react-config/ │ │ │ │ │ ├── .svgrrc.json │ │ │ │ │ ├── index.html │ │ │ │ │ ├── package.json │ │ │ │ │ ├── react.js │ │ │ │ │ └── svgo.config.json │ │ │ │ ├── svg-react-typescript/ │ │ │ │ │ ├── .svgrrc.json │ │ │ │ │ ├── index.html │ │ │ │ │ ├── package.json │ │ │ │ │ └── react.ts │ │ │ │ ├── svg-xml-stylesheet/ │ │ │ │ │ ├── style1.css │ │ │ │ │ ├── style2.css │ │ │ │ │ ├── style3.css │ │ │ │ │ └── style4.css │ │ │ │ ├── svgo-config/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── svgo.config.js │ │ │ │ ├── swc-helpers/ │ │ │ │ │ └── index.js │ │ │ │ ├── swc-helpers-library/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── sync-async/ │ │ │ │ │ ├── dep.js │ │ │ │ │ ├── get-dep-2.js │ │ │ │ │ ├── get-dep-scope-hoisting.js │ │ │ │ │ ├── get-dep.js │ │ │ │ │ ├── same-ancestry-scope-hoisting.js │ │ │ │ │ ├── same-ancestry.js │ │ │ │ │ ├── same-bundle-scope-hoisting.js │ │ │ │ │ └── same-bundle.js │ │ │ │ ├── sync-async-when-needed/ │ │ │ │ │ ├── async-has-dep.js │ │ │ │ │ ├── dep.js │ │ │ │ │ ├── get-dep.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── sync-entry-shared/ │ │ │ │ │ ├── async.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── value.js │ │ │ │ ├── tailwind-scss/ │ │ │ │ │ ├── .postcssrc.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.scss │ │ │ │ │ ├── package.json │ │ │ │ │ └── tailwind.config.js │ │ │ │ ├── target-overwrite-source/ │ │ │ │ │ ├── app/ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── src/ │ │ │ │ │ │ ├── file.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── browser/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── main/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ └── module/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── target-source/ │ │ │ │ │ ├── package.json │ │ │ │ │ └── packages/ │ │ │ │ │ ├── package-a/ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── src/ │ │ │ │ │ │ ├── bar.js │ │ │ │ │ │ ├── foo.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── indexAlternate.js │ │ │ │ │ │ └── indexAlternate2.js │ │ │ │ │ └── package-b/ │ │ │ │ │ ├── package.json │ │ │ │ │ └── src/ │ │ │ │ │ ├── bar.js │ │ │ │ │ ├── foo.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── indexAlternate.js │ │ │ │ ├── terser-codeframe/ │ │ │ │ │ ├── .parcelrc │ │ │ │ │ └── index.js │ │ │ │ ├── terser-config/ │ │ │ │ │ ├── .terserrc │ │ │ │ │ └── index.js │ │ │ │ ├── toml/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── local.toml │ │ │ │ ├── transpilation-invalid/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── ts-types/ │ │ │ │ │ ├── augmentation/ │ │ │ │ │ │ ├── augmenter/ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ └── src/ │ │ │ │ │ │ │ ├── expected.d.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── original/ │ │ │ │ │ │ │ ├── built-src/ │ │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ └── src/ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── composite/ │ │ │ │ │ │ ├── add.ts │ │ │ │ │ │ ├── expected.d.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── tsconfig.json │ │ │ │ │ ├── error/ │ │ │ │ │ │ ├── file2.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── exporting/ │ │ │ │ │ │ ├── expected.d.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── message.ts │ │ │ │ │ │ ├── other.ts │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── test.ts │ │ │ │ │ ├── exporting-overload/ │ │ │ │ │ │ ├── expected.d.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── externals/ │ │ │ │ │ │ ├── expected.d.ts │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── other.tsx │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── import-export-collision/ │ │ │ │ │ │ ├── expected.d.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── importing/ │ │ │ │ │ │ ├── expected.d.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── namespace.ts │ │ │ │ │ │ ├── nested/ │ │ │ │ │ │ │ └── file.ts │ │ │ │ │ │ ├── other.ts │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── importing-collision/ │ │ │ │ │ │ ├── expected.d.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── other1.ts │ │ │ │ │ │ ├── other2.ts │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── main/ │ │ │ │ │ │ ├── expected.d.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── monorepo/ │ │ │ │ │ │ ├── a/ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ └── src/ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── b/ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ └── src/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── other.ts │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── private/ │ │ │ │ │ │ ├── expected.d.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── promise-or-value/ │ │ │ │ │ │ ├── expected.d.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── tsconfig.json │ │ │ │ │ ├── re-exporting-aggregating/ │ │ │ │ │ │ ├── expected.d.ts │ │ │ │ │ │ ├── hoge/ │ │ │ │ │ │ │ ├── bar.ts │ │ │ │ │ │ │ ├── fuga.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── package.json │ │ │ │ │ └── windows-paths/ │ │ │ │ │ ├── expected.d.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── package.json │ │ │ │ │ ├── src/ │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── tsconfig.json │ │ │ │ ├── ts-validation-error/ │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── test.ts │ │ │ │ │ └── tsconfig.json │ │ │ │ ├── typescript/ │ │ │ │ │ ├── Local.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── typescript-config/ │ │ │ │ │ ├── .parcelrc │ │ │ │ │ ├── index.ts │ │ │ │ │ └── tsconfig.json │ │ │ │ ├── typescript-config-extends/ │ │ │ │ │ ├── .parcelrc │ │ │ │ │ ├── index.ts │ │ │ │ │ └── tsconfig.json │ │ │ │ ├── typescript-enum/ │ │ │ │ │ └── index.ts │ │ │ │ ├── typescript-env/ │ │ │ │ │ └── index.ts │ │ │ │ ├── typescript-fs/ │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── raw.tsx │ │ │ │ │ └── readFromTsx.tsx │ │ │ │ ├── typescript-import-type-reexport/ │ │ │ │ │ ├── bar.ts │ │ │ │ │ ├── foo.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── typescript-interop/ │ │ │ │ │ ├── commonjs-module.js │ │ │ │ │ └── index.ts │ │ │ │ ├── typescript-json/ │ │ │ │ │ ├── index.ts │ │ │ │ │ └── local.json │ │ │ │ ├── typescript-jsx/ │ │ │ │ │ └── index.tsx │ │ │ │ ├── typescript-legacy-cast/ │ │ │ │ │ ├── index.ts │ │ │ │ │ └── package.json │ │ │ │ ├── typescript-raw/ │ │ │ │ │ ├── index.ts │ │ │ │ │ └── test.txt │ │ │ │ ├── typescript-require/ │ │ │ │ │ ├── Local.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── typescript-types-parcelrc/ │ │ │ │ │ ├── .parcelrc │ │ │ │ │ ├── index.ts │ │ │ │ │ └── package.json │ │ │ │ ├── uglify/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── local.js │ │ │ │ ├── uglify-json/ │ │ │ │ │ └── index.json │ │ │ │ ├── uglify-json5/ │ │ │ │ │ └── index.json5 │ │ │ │ ├── undeclared-external/ │ │ │ │ │ ├── helpers.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── url-colon/ │ │ │ │ │ ├── absolute.html │ │ │ │ │ └── relative.html │ │ │ │ ├── vue-basic/ │ │ │ │ │ └── Basic.vue │ │ │ │ ├── vue-css-modules/ │ │ │ │ │ └── App.vue │ │ │ │ ├── vue-custom-blocks/ │ │ │ │ │ ├── .vuerc │ │ │ │ │ ├── App.vue │ │ │ │ │ ├── Child.vue │ │ │ │ │ ├── docs-processor.js │ │ │ │ │ └── package.json │ │ │ │ ├── vue-dependencies/ │ │ │ │ │ └── App.vue │ │ │ │ ├── vue-external-files/ │ │ │ │ │ ├── App.vue │ │ │ │ │ ├── main.pug │ │ │ │ │ ├── script.ts │ │ │ │ │ └── style.scss │ │ │ │ ├── vue-nested-components/ │ │ │ │ │ ├── insidecomp.vue │ │ │ │ │ └── testcomp.vue │ │ │ │ ├── vue-preprocessors/ │ │ │ │ │ └── pre-processors.vue │ │ │ │ ├── vue-scoped/ │ │ │ │ │ └── App.vue │ │ │ │ ├── vue-script-setup/ │ │ │ │ │ └── App.vue │ │ │ │ ├── wasm-async/ │ │ │ │ │ ├── .eslintrc │ │ │ │ │ ├── add.wasm │ │ │ │ │ └── index.js │ │ │ │ ├── wasm-dynamic/ │ │ │ │ │ ├── .eslintrc │ │ │ │ │ ├── add.wasm │ │ │ │ │ ├── dynamic.js │ │ │ │ │ └── index.js │ │ │ │ ├── wasm-sourcemap-transformer/ │ │ │ │ │ ├── .parcelrc │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.wasm │ │ │ │ ├── wasm-sync/ │ │ │ │ │ ├── .eslintrc │ │ │ │ │ ├── add.wasm │ │ │ │ │ └── index.js │ │ │ │ ├── webextension/ │ │ │ │ │ ├── .parcelrc │ │ │ │ │ ├── _locales/ │ │ │ │ │ │ ├── .unwanted-file │ │ │ │ │ │ └── en_US/ │ │ │ │ │ │ └── messages.json │ │ │ │ │ ├── dicts/ │ │ │ │ │ │ ├── tmp.aff │ │ │ │ │ │ └── tmp.dic │ │ │ │ │ ├── manifest.json │ │ │ │ │ ├── rulesets/ │ │ │ │ │ │ └── ruleset_1.json │ │ │ │ │ └── src/ │ │ │ │ │ ├── assets/ │ │ │ │ │ │ ├── a.txt │ │ │ │ │ │ └── nested/ │ │ │ │ │ │ └── b.txt │ │ │ │ │ ├── background.ts │ │ │ │ │ ├── content.css │ │ │ │ │ ├── content.js │ │ │ │ │ ├── devtools.html │ │ │ │ │ └── popup.html │ │ │ │ ├── webextension-mv3/ │ │ │ │ │ ├── .parcelrc │ │ │ │ │ ├── background.js │ │ │ │ │ ├── content-script.js │ │ │ │ │ ├── injected.css │ │ │ │ │ ├── manifest.json │ │ │ │ │ ├── other-content-script.js │ │ │ │ │ ├── popup.css │ │ │ │ │ ├── popup.html │ │ │ │ │ ├── popup.js │ │ │ │ │ └── side-panel.html │ │ │ │ ├── webextension-resolve-web-accessible-resources/ │ │ │ │ │ ├── .parcelrc │ │ │ │ │ ├── injected/ │ │ │ │ │ │ ├── index-jsx.jsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── nested/ │ │ │ │ │ │ │ ├── other.ts │ │ │ │ │ │ │ └── unexpected.jsx │ │ │ │ │ │ └── single.js │ │ │ │ │ └── manifest.json │ │ │ │ ├── webmanifest/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── manifest.webmanifest │ │ │ │ ├── webmanifest-json/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── manifest.json │ │ │ │ ├── webmanifest-not-found/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── manifest.webmanifest │ │ │ │ ├── webmanifest-schema/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── manifest.webmanifest │ │ │ │ ├── webmanifest-targets/ │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── package.json │ │ │ │ ├── webpack-import-syntax-error/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── worker-circular/ │ │ │ │ │ ├── index.js │ │ │ │ │ ├── worker-dep.js │ │ │ │ │ └── worker.js │ │ │ │ ├── worker-dynamic/ │ │ │ │ │ ├── async.js │ │ │ │ │ ├── index-async.js │ │ │ │ │ ├── index-nested.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── worker-nested.js │ │ │ │ │ └── worker.js │ │ │ │ ├── worker-import-meta-url/ │ │ │ │ │ ├── dynamic.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── local-url.js │ │ │ │ │ ├── missing.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── worker.js │ │ │ │ ├── worker-import-scripts/ │ │ │ │ │ ├── external.js │ │ │ │ │ ├── importScripts.js │ │ │ │ │ ├── imported.js │ │ │ │ │ ├── imported2.js │ │ │ │ │ ├── index-external.js │ │ │ │ │ ├── index-serviceworker.js │ │ │ │ │ ├── index-variable.js │ │ │ │ │ ├── index-webworker.js │ │ │ │ │ └── variable.js │ │ │ │ ├── worker-self/ │ │ │ │ │ ├── import-meta.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── workerHelpers.js │ │ │ │ ├── worker-shared/ │ │ │ │ │ ├── index.js │ │ │ │ │ ├── worker-a.js │ │ │ │ │ └── worker-b.js │ │ │ │ ├── worker-shared-page/ │ │ │ │ │ ├── async.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.js │ │ │ │ │ ├── large.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── worker.js │ │ │ │ ├── workers/ │ │ │ │ │ ├── common.js │ │ │ │ │ ├── feature.js │ │ │ │ │ ├── index-alternative.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── service-worker.js │ │ │ │ │ ├── shared-worker.js │ │ │ │ │ ├── worker-client.js │ │ │ │ │ └── worker.js │ │ │ │ ├── workers-module/ │ │ │ │ │ ├── dedicated-worker.js │ │ │ │ │ ├── error.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── named.js │ │ │ │ │ └── shared-worker.js │ │ │ │ ├── workers-with-other-loaders/ │ │ │ │ │ ├── add.wasm │ │ │ │ │ ├── index.js │ │ │ │ │ ├── worker-client.js │ │ │ │ │ └── worker.js │ │ │ │ ├── worklet/ │ │ │ │ │ ├── colors.js │ │ │ │ │ ├── pipeline.js │ │ │ │ │ ├── url-worklet-error.js │ │ │ │ │ ├── url-worklet.js │ │ │ │ │ ├── url.js │ │ │ │ │ ├── worklet-error.js │ │ │ │ │ ├── worklet-pipeline-error.js │ │ │ │ │ ├── worklet-pipeline.js │ │ │ │ │ └── worklet.js │ │ │ │ ├── xml/ │ │ │ │ │ ├── atom-namespace.xml │ │ │ │ │ ├── atom.xml │ │ │ │ │ ├── atom.xsl │ │ │ │ │ ├── post.html │ │ │ │ │ └── rss.xml │ │ │ │ └── yaml/ │ │ │ │ ├── index.js │ │ │ │ └── local.yaml │ │ │ ├── javascript.js │ │ │ ├── json-reporter.js │ │ │ ├── kotlin.js │ │ │ ├── lazy-compile.js │ │ │ ├── less.js │ │ │ ├── library-bundler.js │ │ │ ├── macros.js │ │ │ ├── markdown.js │ │ │ ├── mdx.js │ │ │ ├── metrics-reporter.js │ │ │ ├── mochareporters.json │ │ │ ├── monorepos.js │ │ │ ├── namer.js │ │ │ ├── output-formats.js │ │ │ ├── packager.js │ │ │ ├── parcel-link.js │ │ │ ├── parcel-query.js │ │ │ ├── parcel-register.js │ │ │ ├── parser.js │ │ │ ├── plugin.js │ │ │ ├── pnp.js │ │ │ ├── postcss.js │ │ │ ├── posthtml.js │ │ │ ├── project-specific-lockfiles/ │ │ │ │ └── packages/ │ │ │ │ └── app/ │ │ │ │ ├── .gitkeep │ │ │ │ └── README.md │ │ │ ├── proxy.js │ │ │ ├── pug.js │ │ │ ├── react-refresh.js │ │ │ ├── react-server.js │ │ │ ├── react-ssg.js │ │ │ ├── reason.js │ │ │ ├── registered-plugins.js │ │ │ ├── reporters.js │ │ │ ├── resolver.js │ │ │ ├── rust.js │ │ │ ├── sass.js │ │ │ ├── schema-jsonld.js │ │ │ ├── scope-hoisting.js │ │ │ ├── server.js │ │ │ ├── sourcemaps.js │ │ │ ├── stylus.js │ │ │ ├── sugarss.js │ │ │ ├── svg-react.js │ │ │ ├── svg.js │ │ │ ├── symbol-propagation.js │ │ │ ├── tailwind-tests.js │ │ │ ├── tracing.js │ │ │ ├── transpilation.js │ │ │ ├── ts-types.js │ │ │ ├── ts-validation.js │ │ │ ├── typescript-tsc.js │ │ │ ├── typescript.js │ │ │ ├── vue.js │ │ │ ├── wasm.js │ │ │ ├── watcher.js │ │ │ ├── webextension.js │ │ │ ├── webmanifest.js │ │ │ ├── workers.js │ │ │ ├── worklets.js │ │ │ └── xml.js │ │ ├── logger/ │ │ │ ├── .gitignore │ │ │ ├── package.json │ │ │ ├── src/ │ │ │ │ └── Logger.js │ │ │ └── test/ │ │ │ └── Logger.test.js │ │ ├── markdown-ansi/ │ │ │ ├── package.json │ │ │ ├── src/ │ │ │ │ └── markdown-ansi.js │ │ │ └── test/ │ │ │ └── markdown-ansi.js │ │ ├── package-manager/ │ │ │ ├── index.d.ts │ │ │ ├── package.json │ │ │ ├── src/ │ │ │ │ ├── JSONParseStream.js │ │ │ │ ├── MockPackageInstaller.js │ │ │ │ ├── NodePackageManager.js │ │ │ │ ├── Npm.js │ │ │ │ ├── Pnpm.js │ │ │ │ ├── Yarn.js │ │ │ │ ├── getCurrentPackageManager.js │ │ │ │ ├── index.js │ │ │ │ ├── installPackage.js │ │ │ │ ├── promiseFromProcess.js │ │ │ │ ├── utils.js │ │ │ │ └── validateModuleSpecifier.js │ │ │ └── test/ │ │ │ ├── NodePackageManager.test.js │ │ │ ├── fixtures/ │ │ │ │ ├── .gitignore │ │ │ │ ├── empty/ │ │ │ │ │ └── package.json │ │ │ │ ├── has-a-not-yet-installed/ │ │ │ │ │ └── package.json │ │ │ │ ├── has-foo/ │ │ │ │ │ ├── package.json │ │ │ │ │ └── subpackage/ │ │ │ │ │ └── package.json │ │ │ │ └── packages/ │ │ │ │ ├── a/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── foo-2.0/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── peers/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ └── peers-2.0/ │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── getCurrentPackageManager.test.js │ │ │ └── validateModuleSpecifiers.test.js │ │ ├── parcel/ │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── .eslintrc.json │ │ │ ├── bin.js │ │ │ └── cli.js │ │ ├── plugin/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── PluginAPI.d.ts │ │ │ └── PluginAPI.js │ │ ├── profiler/ │ │ │ ├── build-ts.js │ │ │ ├── package.json │ │ │ ├── src/ │ │ │ │ ├── SamplingProfiler.js │ │ │ │ ├── Trace.js │ │ │ │ ├── Tracer.js │ │ │ │ ├── index.js │ │ │ │ └── types.js │ │ │ └── test/ │ │ │ └── Tracer.test.js │ │ ├── register/ │ │ │ ├── example/ │ │ │ │ ├── .gitignore │ │ │ │ ├── count.js │ │ │ │ ├── index.js │ │ │ │ ├── node_modules/ │ │ │ │ │ └── something/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── number.js │ │ │ │ └── package.json │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── register.js │ │ │ └── syncPromise.js │ │ ├── rust/ │ │ │ ├── .gitignore │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.flow │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── browser.js │ │ │ ├── index.js │ │ │ └── utils.js │ │ ├── rust-darwin-arm64/ │ │ │ └── package.json │ │ ├── rust-darwin-x64/ │ │ │ └── package.json │ │ ├── rust-linux-arm-gnueabihf/ │ │ │ └── package.json │ │ ├── rust-linux-arm64-gnu/ │ │ │ └── package.json │ │ ├── rust-linux-arm64-musl/ │ │ │ └── package.json │ │ ├── rust-linux-x64-gnu/ │ │ │ └── package.json │ │ ├── rust-linux-x64-musl/ │ │ │ └── package.json │ │ ├── rust-win32-x64-msvc/ │ │ │ └── package.json │ │ ├── test-utils/ │ │ │ ├── .eslintrc.json │ │ │ ├── .gitignore │ │ │ ├── package.json │ │ │ ├── src/ │ │ │ │ ├── .babelrc │ │ │ │ ├── .parcelrc-no-reporters │ │ │ │ ├── fsFixture.js │ │ │ │ ├── mochaSetup.js │ │ │ │ └── utils.js │ │ │ └── test/ │ │ │ └── fsFixture.test.js │ │ ├── types/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── index.js │ │ ├── types-internal/ │ │ │ ├── package.json │ │ │ ├── scripts/ │ │ │ │ ├── build-ts.js │ │ │ │ └── build-ts.sh │ │ │ └── src/ │ │ │ ├── Cache.js │ │ │ ├── DependencySpecifier.js │ │ │ ├── FileCreateInvalidation.js │ │ │ ├── FilePath.js │ │ │ ├── FileSystem.js │ │ │ ├── Glob.js │ │ │ ├── PackageManager.js │ │ │ ├── PackageName.js │ │ │ ├── SemverRange.js │ │ │ ├── index.js │ │ │ └── unsafe.js │ │ ├── utils/ │ │ │ ├── .eslintrc.js │ │ │ ├── .gitignore │ │ │ ├── package.json │ │ │ ├── src/ │ │ │ │ ├── DefaultMap.js │ │ │ │ ├── Deferred.js │ │ │ │ ├── PromiseQueue.js │ │ │ │ ├── TapStream.js │ │ │ │ ├── alternatives.js │ │ │ │ ├── ansi-html.js │ │ │ │ ├── blob.js │ │ │ │ ├── bundle-url.js │ │ │ │ ├── collection.js │ │ │ │ ├── config.js │ │ │ │ ├── countLines.js │ │ │ │ ├── debounce.js │ │ │ │ ├── dependency-location.js │ │ │ │ ├── escape-html.js │ │ │ │ ├── generateBuildMetrics.js │ │ │ │ ├── generateCertificate.js │ │ │ │ ├── getCertificate.js │ │ │ │ ├── getExisting.js │ │ │ │ ├── getModuleParts.js │ │ │ │ ├── getRootDir.js │ │ │ │ ├── glob.js │ │ │ │ ├── hash.js │ │ │ │ ├── http-server.js │ │ │ │ ├── import-map.js │ │ │ │ ├── index.js │ │ │ │ ├── is-url.js │ │ │ │ ├── isDirectoryInside.js │ │ │ │ ├── objectHash.js │ │ │ │ ├── openInBrowser.js │ │ │ │ ├── parseCSSImport.js │ │ │ │ ├── path.js │ │ │ │ ├── prettifyTime.js │ │ │ │ ├── prettyDiagnostic.js │ │ │ │ ├── progress-message.js │ │ │ │ ├── relativeBundlePath.js │ │ │ │ ├── relativeUrl.js │ │ │ │ ├── replaceBundleReferences.js │ │ │ │ ├── schema.js │ │ │ │ ├── shared-buffer.js │ │ │ │ ├── sourcemap.js │ │ │ │ ├── stream.js │ │ │ │ ├── svgo.js │ │ │ │ ├── throttle.js │ │ │ │ └── urlJoin.js │ │ │ └── test/ │ │ │ ├── DefaultMap.test.js │ │ │ ├── PromiseQueue.test.js │ │ │ ├── collection.test.js │ │ │ ├── config.test.js │ │ │ ├── input/ │ │ │ │ ├── config/ │ │ │ │ │ ├── .testrc │ │ │ │ │ ├── config.cjs │ │ │ │ │ ├── config.js │ │ │ │ │ ├── config.json │ │ │ │ │ ├── empty.json │ │ │ │ │ └── empty.toml │ │ │ │ └── sourcemap/ │ │ │ │ ├── inline.js │ │ │ │ ├── no-sourcemap.js │ │ │ │ ├── referenced-min.js │ │ │ │ └── source-root.js │ │ │ ├── objectHash.test.js │ │ │ ├── prettifyTime.test.js │ │ │ ├── replaceBundleReferences.test.js │ │ │ ├── sourcemap.test.js │ │ │ ├── throttle.test.js │ │ │ └── urlJoin.test.js │ │ └── workers/ │ │ ├── .gitignore │ │ ├── index.d.ts │ │ ├── package.json │ │ ├── src/ │ │ │ ├── Handle.js │ │ │ ├── Worker.js │ │ │ ├── WorkerFarm.js │ │ │ ├── backend.js │ │ │ ├── bus.js │ │ │ ├── child.js │ │ │ ├── childState.js │ │ │ ├── core-worker.browser.js │ │ │ ├── core-worker.js │ │ │ ├── cpuCount.js │ │ │ ├── index.js │ │ │ ├── process/ │ │ │ │ ├── ProcessChild.js │ │ │ │ └── ProcessWorker.js │ │ │ ├── threads/ │ │ │ │ ├── ThreadsChild.js │ │ │ │ └── ThreadsWorker.js │ │ │ ├── types.js │ │ │ └── web/ │ │ │ ├── WebChild.js │ │ │ └── WebWorker.js │ │ └── test/ │ │ ├── cpuCount.test.js │ │ ├── integration/ │ │ │ └── workerfarm/ │ │ │ ├── console.js │ │ │ ├── echo.js │ │ │ ├── ipc-pid.js │ │ │ ├── ipc.js │ │ │ ├── logging.js │ │ │ ├── master-process-id.js │ │ │ ├── master-sum.js │ │ │ ├── ping.js │ │ │ ├── resolve-shared-reference.js │ │ │ ├── reverse-handle.js │ │ │ └── shared-reference.js │ │ └── workerfarm.js │ ├── dev/ │ │ ├── babel-preset/ │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── babel-register/ │ │ │ ├── babel-plugin-module-translate.js │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── bundle-stats-cli/ │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── bin.js │ │ │ ├── cli.js │ │ │ └── deep-imports.js │ │ ├── eslint-config/ │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── eslint-config-browser/ │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── eslint-plugin/ │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── src/ │ │ │ │ ├── rules/ │ │ │ │ │ └── no-self-package-imports.js │ │ │ │ └── utils.js │ │ │ └── test/ │ │ │ ├── rules/ │ │ │ │ └── no-self-package-imports.test.js │ │ │ └── utils.test.js │ │ ├── esm-fuzzer/ │ │ │ ├── .eslintrc.json │ │ │ ├── config.json │ │ │ ├── generateExample.js │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── parcel.js │ │ │ ├── runESM.js │ │ │ └── writeExample.js │ │ ├── parcel-link/ │ │ │ ├── README.md │ │ │ ├── bin.js │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── ParcelLinkConfig.js │ │ │ ├── cli.js │ │ │ ├── index.js │ │ │ ├── link.js │ │ │ ├── unlink.js │ │ │ └── utils.js │ │ ├── query/ │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── bin.js │ │ │ ├── cli.js │ │ │ ├── deep-imports.js │ │ │ └── index.js │ │ └── repl/ │ │ ├── .eslintrc.json │ │ ├── .gitignore │ │ ├── .vercelignore │ │ ├── NOTES.md │ │ ├── SimplePackageInstaller/ │ │ │ ├── index.js │ │ │ └── untar.js │ │ ├── package.json │ │ ├── patchDeps.sh │ │ ├── serve.json │ │ ├── src/ │ │ │ ├── codemirror.js │ │ │ ├── components/ │ │ │ │ ├── Editor.js │ │ │ │ ├── FileBrowser.js │ │ │ │ ├── Options.js │ │ │ │ ├── Preview.js │ │ │ │ ├── helper.js │ │ │ │ ├── index.js │ │ │ │ └── state.js │ │ │ ├── graphs/ │ │ │ │ ├── index.js │ │ │ │ └── worker.js │ │ │ ├── index.html │ │ │ ├── index.js │ │ │ ├── parcel/ │ │ │ │ ├── BrowserPackageManager.js │ │ │ │ ├── ExtendedMemoryFS.js │ │ │ │ ├── ParcelWorker.js │ │ │ │ ├── index.js │ │ │ │ └── yarn.js │ │ │ ├── repl.webmanifest │ │ │ ├── styles/ │ │ │ │ ├── app.css │ │ │ │ ├── file-browser.css │ │ │ │ ├── index.css │ │ │ │ ├── main.css │ │ │ │ └── options.css │ │ │ ├── sw.js │ │ │ └── utils/ │ │ │ ├── assets.js │ │ │ ├── index.js │ │ │ └── options.js │ │ ├── vercel.json │ │ └── write-commit.js │ ├── examples/ │ │ ├── .eslintrc.json │ │ ├── eslint-example/ │ │ │ ├── .eslintrc │ │ │ ├── .parcelrc │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── index.js │ │ ├── html/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── async.js │ │ │ ├── async2.js │ │ │ ├── child.css │ │ │ ├── index.css │ │ │ ├── index.html │ │ │ ├── index.js │ │ │ └── other.html │ │ ├── internalize-example/ │ │ │ ├── async.js │ │ │ ├── index-other.js │ │ │ ├── index-sync.js │ │ │ ├── index.html │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── kitchen-sink/ │ │ │ ├── .gitignore │ │ │ ├── .parcelrc │ │ │ ├── legacy.html │ │ │ ├── modern.html │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── async.js │ │ │ ├── async2.js │ │ │ ├── child.css │ │ │ ├── index.html │ │ │ ├── index.js │ │ │ ├── message.js │ │ │ ├── paragraphs.css │ │ │ ├── prefetched.css │ │ │ ├── prefetched.js │ │ │ ├── preloaded.css │ │ │ ├── preloaded.js │ │ │ ├── styles.css │ │ │ ├── test.txt │ │ │ └── worker.js │ │ ├── react-hmr/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── .eslintrc.json │ │ │ ├── index.html │ │ │ └── index.js │ │ ├── react-refresh/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── .eslintrc.json │ │ │ ├── App.js │ │ │ ├── ClassDefault.js │ │ │ ├── ClassNamed.js │ │ │ ├── FunctionDefault.js │ │ │ ├── FunctionNamed.js │ │ │ ├── LazyComponent.js │ │ │ ├── index.html │ │ │ └── index.js │ │ ├── react-server-components/ │ │ │ ├── package.json │ │ │ ├── src/ │ │ │ │ ├── App.css │ │ │ │ ├── App.js │ │ │ │ ├── Button.css │ │ │ │ ├── Button.js │ │ │ │ ├── Container.js │ │ │ │ ├── Counter.js │ │ │ │ ├── Dynamic.css │ │ │ │ ├── Dynamic.js │ │ │ │ ├── FilePage.js │ │ │ │ ├── Files.js │ │ │ │ ├── ServerState.js │ │ │ │ ├── ShowMore.js │ │ │ │ ├── actions.js │ │ │ │ ├── bootstrap.js │ │ │ │ └── server.js │ │ │ └── static/ │ │ │ └── static.js │ │ ├── react-static/ │ │ │ ├── components/ │ │ │ │ ├── Counter.tsx │ │ │ │ ├── Nav.tsx │ │ │ │ ├── client.tsx │ │ │ │ └── style.css │ │ │ ├── package.json │ │ │ └── pages/ │ │ │ ├── Index.tsx │ │ │ └── Other.tsx │ │ ├── rsc-client/ │ │ │ ├── client/ │ │ │ │ ├── App.tsx │ │ │ │ ├── index.html │ │ │ │ └── index.tsx │ │ │ ├── package.json │ │ │ └── server/ │ │ │ ├── Counter.tsx │ │ │ ├── RSC.css │ │ │ ├── RSC.tsx │ │ │ ├── actions.ts │ │ │ └── server.tsx │ │ ├── simple/ │ │ │ ├── .parcelrc │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── bar.js │ │ │ ├── foo.js │ │ │ └── index.js │ │ ├── three/ │ │ │ ├── .gitignore │ │ │ ├── .parcelrc │ │ │ ├── Makefile │ │ │ └── package.json │ │ ├── ts-example/ │ │ │ ├── package.json │ │ │ ├── src/ │ │ │ │ ├── index.ts │ │ │ │ └── other.ts │ │ │ └── tsconfig.json │ │ └── ts-typecheck-example/ │ │ ├── .parcelrc │ │ ├── package.json │ │ ├── src/ │ │ │ └── index.ts │ │ └── tsconfig.json │ ├── namers/ │ │ └── default/ │ │ ├── package.json │ │ └── src/ │ │ └── DefaultNamer.js │ ├── optimizers/ │ │ ├── blob-url/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── BlobURLOptimizer.js │ │ ├── css/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── CSSOptimizer.js │ │ ├── cssnano/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── CSSNanoOptimizer.js │ │ ├── data-url/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── DataURLOptimizer.js │ │ ├── esbuild/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── ESBuildOptimizer.js │ │ ├── html/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── HTMLOptimizer.js │ │ ├── htmlnano/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── HTMLNanoOptimizer.js │ │ │ └── svgMappings.js │ │ ├── image/ │ │ │ ├── .gitignore │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── ImageOptimizer.js │ │ ├── inline-requires/ │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── src/ │ │ │ │ ├── InlineRequires.js │ │ │ │ └── RequireInliningVisitor.js │ │ │ └── test/ │ │ │ └── RequireInliningVisitor.test.js │ │ ├── svg/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── SVGOptimizer.js │ │ ├── svgo/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── SVGOOptimizer.js │ │ ├── swc/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── SwcOptimizer.js │ │ └── terser/ │ │ ├── package.json │ │ └── src/ │ │ └── TerserOptimizer.js │ ├── packagers/ │ │ ├── css/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── CSSPackager.js │ │ ├── html/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── HTMLPackager.js │ │ ├── js/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── .eslintrc.json │ │ │ ├── CJSOutputFormat.js │ │ │ ├── DevPackager.js │ │ │ ├── ESMOutputFormat.js │ │ │ ├── GlobalOutputFormat.js │ │ │ ├── ScopeHoistingPackager.js │ │ │ ├── dev-prelude.js │ │ │ ├── helpers.js │ │ │ ├── index.js │ │ │ └── utils.js │ │ ├── raw/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── RawPackager.js │ │ ├── raw-url/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── RawUrlPackager.js │ │ ├── react-static/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── ReactStaticPackager.js │ │ ├── svg/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── SVGPackager.js │ │ ├── ts/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── TSPackager.js │ │ ├── wasm/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── WasmPackager.js │ │ │ ├── wasm-sourcemap.js │ │ │ └── wasm-sourcemap.js.flow │ │ ├── webextension/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── WebExtensionPackager.js │ │ └── xml/ │ │ ├── package.json │ │ └── src/ │ │ └── XMLPackager.js │ ├── reporters/ │ │ ├── build-metrics/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── BuildMetricsReporter.js │ │ ├── bundle-analyzer/ │ │ │ ├── client/ │ │ │ │ ├── index.js │ │ │ │ └── vendor/ │ │ │ │ └── foamtree/ │ │ │ │ ├── LICENSE.txt │ │ │ │ └── carrotsearch.foamtree.js │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── BundleAnalyzerReporter.js │ │ ├── bundle-buddy/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── BundleBuddyReporter.js │ │ ├── bundle-stats/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── BundleStatsReporter.js │ │ ├── cli/ │ │ │ ├── package.json │ │ │ ├── src/ │ │ │ │ ├── CLIReporter.js │ │ │ │ ├── bundleReport.js │ │ │ │ ├── emoji.js │ │ │ │ ├── logLevels.js │ │ │ │ ├── phaseReport.js │ │ │ │ ├── render.js │ │ │ │ └── utils.js │ │ │ └── test/ │ │ │ └── CLIReporter.test.js │ │ ├── dev-server/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── HMRServer.js │ │ │ ├── NodeRunner.js │ │ │ ├── Server.js │ │ │ ├── ServerReporter.js │ │ │ ├── serverErrors.js │ │ │ ├── templates/ │ │ │ │ ├── 404.html │ │ │ │ └── 500.html │ │ │ └── types.js.flow │ │ ├── dev-server-sw/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── HMRServer.js │ │ │ └── ServerReporter.js │ │ ├── json/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── JSONReporter.js │ │ ├── lsp-reporter/ │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── LspReporter.js │ │ │ ├── ipc.js │ │ │ └── utils.js │ │ ├── sourcemap-visualiser/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── SourceMapVisualiser.js │ │ └── tracer/ │ │ ├── package.json │ │ └── src/ │ │ └── TracerReporter.js │ ├── resolvers/ │ │ ├── default/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── DefaultResolver.js │ │ ├── glob/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── GlobResolver.js │ │ └── repl-runtimes/ │ │ ├── package.json │ │ └── src/ │ │ └── REPLRuntimesResolver.js │ ├── runtimes/ │ │ ├── hmr/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── HMRRuntime.js │ │ │ └── loaders/ │ │ │ ├── .eslintrc.json │ │ │ └── hmr-runtime.js │ │ ├── js/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── JSRuntime.js │ │ │ └── helpers/ │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── browser/ │ │ │ │ ├── css-loader.js │ │ │ │ ├── html-loader.js │ │ │ │ ├── import-polyfill.js │ │ │ │ ├── js-loader.js │ │ │ │ ├── prefetch-loader.js │ │ │ │ ├── preload-loader.js │ │ │ │ └── wasm-loader.js │ │ │ ├── cacheLoader.js │ │ │ ├── get-worker-url.js │ │ │ ├── node/ │ │ │ │ ├── css-loader.js │ │ │ │ ├── html-loader.js │ │ │ │ ├── js-loader.js │ │ │ │ ├── node-loader.js │ │ │ │ └── wasm-loader.js │ │ │ └── worker/ │ │ │ ├── js-loader.js │ │ │ └── wasm-loader.js │ │ ├── rsc/ │ │ │ ├── package.json │ │ │ ├── rsc-helpers.jsx │ │ │ └── src/ │ │ │ └── RSCRuntime.js │ │ ├── service-worker/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── ServiceWorkerRuntime.js │ │ └── webextension/ │ │ ├── package.json │ │ └── src/ │ │ ├── WebExtensionRuntime.js │ │ └── autoreload-bg.js │ ├── transformers/ │ │ ├── babel/ │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── BabelTransformer.js │ │ │ ├── babel7.js │ │ │ ├── babelErrorUtils.js │ │ │ ├── config.js │ │ │ ├── constants.js │ │ │ ├── flow.js │ │ │ ├── jsx.js │ │ │ ├── remapAstLocations.js │ │ │ ├── types.js │ │ │ └── utils.js │ │ ├── coffeescript/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── CoffeeScriptTransformer.js │ │ ├── css/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── CSSTransformer.js │ │ ├── elm/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── ElmTransformer.js │ │ │ └── loadConfig.js │ │ ├── glsl/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── GLSLTransformer.js │ │ ├── graphql/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── GraphQLTransformer.js │ │ ├── html/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── HTMLTransformer.js │ │ ├── image/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── ImageTransformer.js │ │ │ ├── loadSharp.js │ │ │ └── validateConfig.js │ │ ├── inline/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── InlineTransformer.js │ │ ├── inline-string/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── InlineStringTransformer.js │ │ ├── js/ │ │ │ ├── .gitignore │ │ │ ├── core/ │ │ │ │ ├── Cargo.toml │ │ │ │ └── src/ │ │ │ │ ├── collect.rs │ │ │ │ ├── constant_module.rs │ │ │ │ ├── dependency_collector.rs │ │ │ │ ├── env_replacer.rs │ │ │ │ ├── fs.rs │ │ │ │ ├── global_replacer.rs │ │ │ │ ├── hoist.rs │ │ │ │ ├── lib.rs │ │ │ │ ├── mdx.rs │ │ │ │ ├── modules.rs │ │ │ │ ├── node_replacer.rs │ │ │ │ ├── react_lazy.rs │ │ │ │ ├── test_utils.rs │ │ │ │ ├── typeof_replacer.rs │ │ │ │ └── utils.rs │ │ │ ├── hoist.md │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── JSTransformer.js │ │ │ ├── esmodule-helpers.js │ │ │ └── mdx-components.jsx │ │ ├── json/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── JSONTransformer.js │ │ ├── jsonld/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── JSONLDTransformer.js │ │ ├── less/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── LessTransformer.js │ │ │ └── loadConfig.js │ │ ├── node/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── NodeTransformer.js │ │ ├── postcss/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── PostCSSTransformer.js │ │ │ ├── constants.js │ │ │ ├── loadConfig.js │ │ │ └── loadPlugins.js │ │ ├── posthtml/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── PostHTMLTransformer.js │ │ │ └── loadPlugins.js │ │ ├── pug/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── PugTransformer.js │ │ ├── raw/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── RawTransformer.js │ │ ├── react-refresh-wrap/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── ReactRefreshWrapTransformer.js │ │ │ └── helpers/ │ │ │ ├── .eslintrc.json │ │ │ └── helpers.js │ │ ├── react-static/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── ReactStaticTransformer.js │ │ ├── sass/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── SassTransformer.js │ │ │ ├── legacy.js │ │ │ └── modern.js │ │ ├── stylus/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── StylusTransformer.js │ │ ├── sugarss/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── SugarssTransformer.js │ │ ├── svg/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── SVGTransformer.js │ │ ├── svg-jsx/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── SvgJsxTransformer.js │ │ ├── svg-react/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── SvgReactTransformer.js │ │ ├── toml/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── TOMLTransformer.js │ │ ├── typescript-tsc/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── TSCTransformer.js │ │ ├── typescript-types/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── TSModule.js │ │ │ ├── TSModuleGraph.js │ │ │ ├── TSTypesTransformer.js │ │ │ ├── collect.js │ │ │ ├── shake.js │ │ │ ├── utils.js │ │ │ └── wrappers.js │ │ ├── vue/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── VueTransformer.js │ │ ├── webextension/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── WebExtensionTransformer.js │ │ │ ├── runtime/ │ │ │ │ ├── autoreload.js │ │ │ │ └── default-bg.js │ │ │ └── schema.js │ │ ├── webmanifest/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── WebManifestTransformer.js │ │ ├── worklet/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── WorkletTransformer.js │ │ ├── xml/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── XMLTransformer.js │ │ │ ├── atom.js │ │ │ ├── processing-instruction.js │ │ │ ├── rss.js │ │ │ └── utils.js │ │ └── yaml/ │ │ ├── package.json │ │ └── src/ │ │ └── YAMLTransformer.js │ ├── utils/ │ │ ├── babel-plugin-transform-runtime/ │ │ │ ├── package.json │ │ │ ├── src/ │ │ │ │ └── index.js │ │ │ └── test/ │ │ │ └── babel-plugin-transform-runtime.test.js │ │ ├── babel-preset-env/ │ │ │ ├── package.json │ │ │ ├── src/ │ │ │ │ └── index.js │ │ │ └── test/ │ │ │ └── preset-env.test.js │ │ ├── create-parcel/ │ │ │ ├── package.json │ │ │ ├── src/ │ │ │ │ └── create-parcel.js │ │ │ └── templates/ │ │ │ ├── react-client/ │ │ │ │ ├── gitignore │ │ │ │ ├── package.json │ │ │ │ ├── src/ │ │ │ │ │ ├── App.css │ │ │ │ │ ├── App.tsx │ │ │ │ │ ├── index.html │ │ │ │ │ └── index.tsx │ │ │ │ └── tsconfig.json │ │ │ ├── react-server/ │ │ │ │ ├── gitignore │ │ │ │ ├── package.json │ │ │ │ ├── src/ │ │ │ │ │ ├── Counter.tsx │ │ │ │ │ ├── Page.tsx │ │ │ │ │ ├── actions.ts │ │ │ │ │ ├── client.tsx │ │ │ │ │ ├── page.css │ │ │ │ │ └── server.tsx │ │ │ │ └── tsconfig.json │ │ │ ├── react-static/ │ │ │ │ ├── gitignore │ │ │ │ ├── package.json │ │ │ │ ├── src/ │ │ │ │ │ ├── client.tsx │ │ │ │ │ ├── components/ │ │ │ │ │ │ ├── Counter.tsx │ │ │ │ │ │ ├── MDXLayout.tsx │ │ │ │ │ │ ├── Nav.css │ │ │ │ │ │ └── Nav.tsx │ │ │ │ │ ├── page.css │ │ │ │ │ └── pages/ │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── mdx.mdx │ │ │ │ └── tsconfig.json │ │ │ └── vanilla/ │ │ │ ├── gitignore │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── create-react-app/ │ │ │ ├── package.json │ │ │ ├── src/ │ │ │ │ ├── bin.js │ │ │ │ ├── cli.js │ │ │ │ └── emoji.js │ │ │ └── templates/ │ │ │ ├── default/ │ │ │ │ ├── .gitignore │ │ │ │ └── src/ │ │ │ │ ├── App.css │ │ │ │ ├── App.js │ │ │ │ ├── index.html │ │ │ │ ├── index.js │ │ │ │ └── parcel/ │ │ │ │ ├── index.css │ │ │ │ └── index.js │ │ │ └── package.json │ │ ├── error-overlay/ │ │ │ ├── .eslintrc │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── components/ │ │ │ │ ├── CloseButton.js │ │ │ │ ├── CodeBlock.js │ │ │ │ ├── Collapsible.js │ │ │ │ ├── ErrorOverlay.js │ │ │ │ ├── Footer.js │ │ │ │ ├── Header.js │ │ │ │ ├── HydrationDiff.js │ │ │ │ └── NavigationBar.js │ │ │ ├── containers/ │ │ │ │ ├── RuntimeError.js │ │ │ │ ├── RuntimeErrorContainer.js │ │ │ │ ├── StackFrame.js │ │ │ │ └── StackTrace.js │ │ │ ├── effects/ │ │ │ │ ├── stackTraceLimit.js │ │ │ │ ├── unhandledError.js │ │ │ │ └── unhandledRejection.js │ │ │ ├── index.js │ │ │ ├── listenToRuntimeErrors.js │ │ │ ├── styles.js │ │ │ └── utils/ │ │ │ ├── generateAnsiHTML.js │ │ │ ├── getPrettyURL.js │ │ │ ├── getStackFrames.js │ │ │ ├── isBultinErrorName.js │ │ │ ├── isInternalFile.js │ │ │ ├── parser.js │ │ │ └── stack-frame.js │ │ ├── events/ │ │ │ ├── package.json │ │ │ ├── src/ │ │ │ │ ├── Disposable.js │ │ │ │ ├── ValueEmitter.js │ │ │ │ ├── errors.js │ │ │ │ ├── index.js │ │ │ │ └── types.js │ │ │ └── test/ │ │ │ ├── Disposable.test.js │ │ │ └── ValueEmitter.test.js │ │ ├── macros/ │ │ │ ├── macros.d.ts │ │ │ └── package.json │ │ ├── node-resolver-core/ │ │ │ ├── .cargo/ │ │ │ │ └── config.toml │ │ │ ├── .gitignore │ │ │ ├── build.rs │ │ │ ├── package.json │ │ │ ├── src/ │ │ │ │ ├── Wrapper.js │ │ │ │ ├── _empty.js │ │ │ │ ├── builtins.browser.js │ │ │ │ ├── builtins.js │ │ │ │ └── index.js │ │ │ └── test/ │ │ │ ├── fixture/ │ │ │ │ ├── bar.html │ │ │ │ ├── bar.js │ │ │ │ ├── env-dep/ │ │ │ │ │ └── package.json │ │ │ │ ├── foo.js │ │ │ │ ├── nested/ │ │ │ │ │ ├── index.js │ │ │ │ │ ├── test.js │ │ │ │ │ └── tsconfig.json │ │ │ │ ├── package.json │ │ │ │ ├── packages/ │ │ │ │ │ ├── self/ │ │ │ │ │ │ ├── bar.js │ │ │ │ │ │ ├── foo.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── self-source/ │ │ │ │ │ │ ├── compiled.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── source.js │ │ │ │ │ ├── source/ │ │ │ │ │ │ ├── dist.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── source.js │ │ │ │ │ ├── source-alias/ │ │ │ │ │ │ ├── dist.js │ │ │ │ │ │ ├── other.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── source.js │ │ │ │ │ ├── source-alias-glob/ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── src/ │ │ │ │ │ │ └── test.js │ │ │ │ │ └── source-exports/ │ │ │ │ │ ├── dist.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── source.js │ │ │ │ ├── priority/ │ │ │ │ │ ├── foo/ │ │ │ │ │ │ └── index.js │ │ │ │ │ └── foo.js │ │ │ │ ├── ts-extensions/ │ │ │ │ │ ├── a.cts │ │ │ │ │ ├── a.mts │ │ │ │ │ ├── a.ts │ │ │ │ │ ├── a.tsx │ │ │ │ │ ├── b.js │ │ │ │ │ ├── b.ts │ │ │ │ │ ├── c.js.ts │ │ │ │ │ ├── c.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── tsconfig/ │ │ │ │ │ ├── builtins/ │ │ │ │ │ │ ├── thing.js │ │ │ │ │ │ └── tsconfig.json │ │ │ │ │ ├── exports/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── tsconfig.json │ │ │ │ │ ├── extends-extension/ │ │ │ │ │ │ ├── base-tsconfig.json │ │ │ │ │ │ ├── foo.js │ │ │ │ │ │ └── tsconfig.json │ │ │ │ │ ├── extends-node-module/ │ │ │ │ │ │ ├── bar.ts │ │ │ │ │ │ └── tsconfig.json │ │ │ │ │ ├── extends-not-found/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── tsconfig.json │ │ │ │ │ ├── field/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── tsconfig.json │ │ │ │ │ ├── index/ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── tsconfig.json │ │ │ │ │ ├── suffixes/ │ │ │ │ │ │ ├── a.ios.ts │ │ │ │ │ │ ├── a.ts │ │ │ │ │ │ ├── b.ts │ │ │ │ │ │ ├── c-test.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── tsconfig.json │ │ │ │ │ └── trailing-comma/ │ │ │ │ │ ├── bar.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── tsconfig.json │ │ │ │ └── tsconfig.json │ │ │ └── resolver.js │ │ ├── node-resolver-rs/ │ │ │ └── src/ │ │ │ └── tsconfig.rs │ │ ├── parcel-lsp/ │ │ │ ├── .gitignore │ │ │ ├── package.json │ │ │ ├── src/ │ │ │ │ └── LspServer.ts │ │ │ └── tsconfig.json │ │ ├── parcel-lsp-protocol/ │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ ├── src/ │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── parcel-watcher-watchman-js/ │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── index.js │ │ │ └── wrapper.js │ │ ├── parcelforvscode/ │ │ │ ├── .eslintrc.json │ │ │ ├── .gitignore │ │ │ ├── .vscodeignore │ │ │ ├── .yarnrc │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── schemas/ │ │ │ │ ├── package-targets.schema.json │ │ │ │ └── parcelrc.schema.json │ │ │ ├── src/ │ │ │ │ ├── extension.ts │ │ │ │ ├── importersView.ts │ │ │ │ ├── server.ts │ │ │ │ └── test/ │ │ │ │ ├── runTest.ts │ │ │ │ └── suite/ │ │ │ │ ├── extension.test.ts │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ ├── vsc-extension-quickstart.md │ │ │ └── vscode-extension-TODO.md │ │ ├── rsc/ │ │ │ ├── package.json │ │ │ ├── src/ │ │ │ │ ├── client.tsx │ │ │ │ ├── node.tsx │ │ │ │ ├── server.tsx │ │ │ │ └── ssg.d.ts │ │ │ ├── tsconfig.json │ │ │ └── types.d.ts │ │ ├── service-worker/ │ │ │ ├── package.json │ │ │ ├── service-worker.d.ts │ │ │ └── service-worker.js │ │ └── ts-utils/ │ │ ├── package.json │ │ └── src/ │ │ ├── CompilerHost.js │ │ ├── FSHost.js │ │ ├── LanguageServiceHost.js │ │ ├── ParseConfigHost.js │ │ ├── index.js │ │ └── loadTSConfig.js │ └── validators/ │ ├── eslint/ │ │ ├── package.json │ │ └── src/ │ │ └── EslintValidator.js │ └── typescript/ │ ├── package.json │ └── src/ │ └── TypeScriptValidator.js ├── patches/ │ └── @nodelib+fs.scandir+2.1.5.patch ├── rust-toolchain ├── rustfmt.toml ├── scripts/ │ ├── build-native.js │ ├── common.js │ ├── link-all.js │ ├── postinstall.js │ ├── swc-update-all.sh │ ├── tag-release.mjs │ ├── to-fs-fixture.js │ ├── unlink-all.js │ ├── update-config-dependencies.js │ └── update-engines-peerdeps.js ├── verdaccio.yml └── verdaccioPublish.js