gitextract_yce_p9ai/ ├── .changeset/ │ ├── README.md │ ├── config.json │ ├── gold-berries-march.md │ ├── swift-plums-fix.md │ └── violet-falcons-dream.md ├── .editorconfig ├── .eslintrc ├── .github/ │ └── workflows/ │ ├── nodejs.yml │ ├── release.yml │ └── size.yml ├── .gitignore ├── .prettierignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── babel.config.js ├── index.d.ts ├── package.json ├── src/ │ ├── cli.js │ ├── index.js │ ├── lib/ │ │ ├── __entry__.js │ │ ├── babel-custom.js │ │ ├── compressed-size.js │ │ ├── css-modules.js │ │ ├── option-normalization.js │ │ ├── package-info.js │ │ ├── terser.js │ │ └── transform-fast-rest.js │ ├── log-error.js │ ├── prog.js │ └── utils.js ├── test/ │ ├── __snapshots__/ │ │ └── index.test.js.snap │ ├── fixtures/ │ │ ├── alias/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── constants-debug.js │ │ │ ├── constants.js │ │ │ └── index.js │ │ ├── alias-external/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── colossal-glob.js │ │ │ └── index.js │ │ ├── async-iife-ts/ │ │ │ ├── package.json │ │ │ ├── src/ │ │ │ │ └── index.ts │ │ │ └── tsconfig.json │ │ ├── async-ts/ │ │ │ ├── package.json │ │ │ ├── src/ │ │ │ │ └── index.ts │ │ │ └── tsconfig.json │ │ ├── basic/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── index.js │ │ │ └── two.js │ │ ├── basic-babelrc/ │ │ │ ├── .babelrc │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── index.js │ │ ├── basic-compress-false/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── index.js │ │ │ └── two.js │ │ ├── basic-css/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── index.js │ │ │ └── two.css │ │ ├── basic-dashed-external/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── index.js │ │ │ └── two.js │ │ ├── basic-flow/ │ │ │ ├── .flowconfig │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── fruits.js │ │ │ └── index.js │ │ ├── basic-json/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── index.js │ │ │ └── two.json │ │ ├── basic-multi-source/ │ │ │ ├── a.js │ │ │ ├── b.js │ │ │ └── package.json │ │ ├── basic-multi-source-css/ │ │ │ ├── a.css │ │ │ ├── a.js │ │ │ ├── b.css │ │ │ ├── b.js │ │ │ └── package.json │ │ ├── basic-no-compress/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── index.js │ │ │ └── two.js │ │ ├── basic-no-pkg-main/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── index.js │ │ │ └── two.js │ │ ├── basic-node-internals/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── index.js │ │ ├── basic-ts/ │ │ │ ├── package.json │ │ │ ├── src/ │ │ │ │ ├── car.ts │ │ │ │ └── index.ts │ │ │ └── tsconfig.json │ │ ├── basic-tsx/ │ │ │ ├── package.json │ │ │ ├── src/ │ │ │ │ └── index.tsx │ │ │ └── tsconfig.json │ │ ├── basic-with-cwd/ │ │ │ ├── basic/ │ │ │ │ ├── package.json │ │ │ │ └── src/ │ │ │ │ ├── index.js │ │ │ │ └── two.js │ │ │ └── package.json │ │ ├── class-decorators-ts/ │ │ │ ├── package.json │ │ │ ├── src/ │ │ │ │ └── index.ts │ │ │ └── tsconfig.json │ │ ├── class-properties/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── index.js │ │ ├── css-modules--false/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── index.js │ │ │ ├── not_scoped.css │ │ │ └── not_scoped.module.css │ │ ├── css-modules--null/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── index.js │ │ │ ├── not_scoped.css │ │ │ └── scoped.module.css │ │ ├── css-modules--string/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── index.js │ │ │ ├── scoped.css │ │ │ └── scoped.module.css │ │ ├── css-modules--true/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── index.js │ │ │ ├── scoped.css │ │ │ └── scoped.module.css │ │ ├── custom-babelrc/ │ │ │ ├── .babelrc │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── index.js │ │ ├── custom-outputs/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── index.js │ │ │ └── two.js │ │ ├── custom-outputs-alt/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── index.js │ │ │ └── two.js │ │ ├── custom-source/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── custom-source.js │ │ │ └── two.js │ │ ├── custom-source-with-cwd/ │ │ │ ├── custom-source/ │ │ │ │ ├── package.json │ │ │ │ └── src/ │ │ │ │ ├── custom-source.js │ │ │ │ └── two.js │ │ │ └── package.json │ │ ├── default-named/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── index.js │ │ ├── define/ │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── define-expression/ │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── esnext-ts/ │ │ │ ├── package.json │ │ │ ├── src/ │ │ │ │ └── index.ts │ │ │ └── tsconfig.json │ │ ├── inline-source-map/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── index.js │ │ │ └── two.js │ │ ├── jsx/ │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── macro/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── index.js │ │ │ └── macro.js │ │ ├── mangle-json-file/ │ │ │ ├── mangle.json │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── index.js │ │ │ └── two.js │ │ ├── minify-config/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── index.js │ │ │ └── two.js │ │ ├── minify-config-boolean/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── index.js │ │ │ └── two.js │ │ ├── minify-path-config/ │ │ │ ├── minify.json │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── index.js │ │ │ └── two.js │ │ ├── minify-path-parent-dir-with-cwd/ │ │ │ ├── minify-path-parent-dir/ │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── two.js │ │ │ ├── minify.json │ │ │ └── package.json │ │ ├── modern/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── index.js │ │ │ └── two.js │ │ ├── modern-generators/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── index.js │ │ │ └── two.js │ │ ├── name-custom-amd/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── index.js │ │ │ └── two.js │ │ ├── name-custom-cli/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── index.js │ │ │ └── two.js │ │ ├── no-pkg/ │ │ │ └── src/ │ │ │ ├── index.js │ │ │ └── two.js │ │ ├── no-pkg-name/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── index.js │ │ │ └── two.js │ │ ├── optional-chaining-ts/ │ │ │ ├── package.json │ │ │ ├── src/ │ │ │ │ └── index.ts │ │ │ └── tsconfig.json │ │ ├── parameters-rest-closure/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── index.js │ │ ├── pretty/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── index.js │ │ ├── publish-config/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── foo.ts │ │ ├── pure/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── index.js │ │ ├── raw/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── index.js │ │ ├── shebang/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── index.js │ │ ├── terser-annotations/ │ │ │ ├── mangle.json │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── index.js │ │ ├── ts-custom-declaration/ │ │ │ ├── package.json │ │ │ ├── src/ │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── types/ │ │ │ └── index.d.ts │ │ ├── ts-declaration/ │ │ │ ├── package.json │ │ │ ├── src/ │ │ │ │ └── index.tsx │ │ │ ├── tsconfig.json │ │ │ └── types/ │ │ │ └── index.d.ts │ │ ├── ts-jsx/ │ │ │ ├── package.json │ │ │ ├── src/ │ │ │ │ └── index.tsx │ │ │ └── tsconfig.json │ │ ├── ts-mixed-exports/ │ │ │ ├── package.json │ │ │ ├── src/ │ │ │ │ ├── car.ts │ │ │ │ └── index.ts │ │ │ └── tsconfig.json │ │ ├── ts-module/ │ │ │ ├── package.json │ │ │ ├── src/ │ │ │ │ ├── foo.ts │ │ │ │ └── index.ts │ │ │ └── tsconfig.json │ │ ├── visualizer/ │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── index.js │ │ └── worker-loader/ │ │ ├── package.json │ │ └── src/ │ │ ├── bar.js │ │ ├── index.js │ │ └── worker.js │ ├── index.test.js │ └── lib/ │ └── util.js ├── tools/ │ ├── build-fixture.js │ └── generate-filesize.js └── tsconfig.json