gitextract_0ybux_rt/ ├── .all-contributorsrc ├── .changeset/ │ ├── README.md │ └── config.json ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ ├── nanobundle-integration.yml │ └── release.yml ├── .gitignore ├── .yarn/ │ └── releases/ │ └── yarn-4.3.0.cjs ├── .yarnrc.yml ├── LICENSE ├── README.md ├── package.json ├── packages/ │ └── nanobundle/ │ ├── .gitattributes │ ├── .gitignore │ ├── CHANGELOG.md │ ├── README.md │ ├── build.mjs │ ├── package.json │ ├── src/ │ │ ├── __snapshots__/ │ │ │ ├── config.test.ts.snap │ │ │ ├── context.test.ts.snap │ │ │ └── entry.test.ts.snap │ │ ├── bin.ts │ │ ├── cli.ts │ │ ├── commands/ │ │ │ ├── build/ │ │ │ │ ├── build.machine.ts │ │ │ │ ├── build.machine.typegen.ts │ │ │ │ └── index.ts │ │ │ └── clean/ │ │ │ └── index.ts │ │ ├── common.ts │ │ ├── context.test.ts │ │ ├── context.ts │ │ ├── entry.test.ts │ │ ├── entry.ts │ │ ├── entryGroup.test.ts │ │ ├── entryGroup.ts │ │ ├── errors.ts │ │ ├── formatUtils.ts │ │ ├── fsUtils.ts │ │ ├── importMaps.test.ts │ │ ├── importMaps.ts │ │ ├── manifest.ts │ │ ├── outputFile.ts │ │ ├── plugins/ │ │ │ ├── esbuildEmbedPlugin.ts │ │ │ ├── esbuildImportMapsPlugin.ts │ │ │ └── esbuildNanobundlePlugin.ts │ │ ├── reporter.ts │ │ ├── target.test.ts │ │ ├── target.ts │ │ └── tasks/ │ │ ├── buildBundleTask.ts │ │ ├── buildFileTask.ts │ │ ├── buildTypeTask.ts │ │ ├── chmodBinTask.ts │ │ ├── cleanupTask.ts │ │ ├── emitTask.ts │ │ └── reportEmitResultsTask.ts │ └── tsconfig.json └── renovate.json