gitextract_s76hpf38/ ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug-report.md │ │ └── config.yml │ └── workflows/ │ ├── ci.yml │ ├── prepare-release.yml │ ├── release-insiders.yml │ └── release.yml ├── .gitignore ├── .oxlintrc.json ├── .prettierignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── knip.json ├── package.json ├── prettier.config.js ├── scripts/ │ ├── copy-licenses.js │ ├── install-fixture-deps.js │ ├── release-channel.js │ └── release-notes.js ├── src/ │ ├── config.ts │ ├── console.ts │ ├── create-plugin.ts │ ├── expiring-map.ts │ ├── index.ts │ ├── internal.d.ts │ ├── options.ts │ ├── resolve.ts │ ├── sorter.ts │ ├── sorting.ts │ ├── transform.ts │ ├── types.ts │ ├── utils.bench.ts │ ├── utils.test.ts │ ├── utils.ts │ └── versions/ │ ├── assets.ts │ ├── v3.ts │ └── v4.ts ├── tests/ │ ├── fixtures/ │ │ ├── basic/ │ │ │ ├── index.html │ │ │ ├── output.html │ │ │ ├── prettier.config.js │ │ │ └── tailwind.config.js │ │ ├── cjs/ │ │ │ ├── index.html │ │ │ ├── output.html │ │ │ ├── prettier.config.js │ │ │ └── tailwind.config.cjs │ │ ├── custom-jsx/ │ │ │ ├── index.jsx │ │ │ ├── output.jsx │ │ │ ├── prettier.config.js │ │ │ └── tailwind.config.js │ │ ├── custom-pkg-name-v3/ │ │ │ ├── config.js │ │ │ ├── index.html │ │ │ ├── output.html │ │ │ └── package.json │ │ ├── custom-pkg-name-v4/ │ │ │ ├── app.css │ │ │ ├── index.html │ │ │ ├── output.html │ │ │ └── package.json │ │ ├── custom-vue/ │ │ │ ├── index.vue │ │ │ ├── output.vue │ │ │ ├── prettier.config.js │ │ │ └── tailwind.config.js │ │ ├── esm/ │ │ │ ├── index.html │ │ │ ├── output.html │ │ │ ├── prettier.config.js │ │ │ └── tailwind.config.mjs │ │ ├── esm-explicit/ │ │ │ ├── config.mjs │ │ │ ├── index.html │ │ │ ├── output.html │ │ │ └── prettier.config.js │ │ ├── monorepo/ │ │ │ ├── .prettierrc │ │ │ ├── package-1/ │ │ │ │ ├── app.css │ │ │ │ ├── index.jsx │ │ │ │ ├── output.jsx │ │ │ │ └── package.json │ │ │ ├── package-2/ │ │ │ │ ├── index.jsx │ │ │ │ ├── output.jsx │ │ │ │ ├── package.json │ │ │ │ └── tailwind.config.js │ │ │ └── package.json │ │ ├── no-local-version/ │ │ │ ├── app.css │ │ │ ├── index.html │ │ │ ├── output.html │ │ │ └── package.json │ │ ├── no-prettier-config/ │ │ │ ├── index.html │ │ │ ├── output.html │ │ │ └── tailwind.config.js │ │ ├── no-stylesheet-given/ │ │ │ ├── index.html │ │ │ └── output.html │ │ ├── package.json │ │ ├── plugins/ │ │ │ ├── index.html │ │ │ ├── output.html │ │ │ ├── prettier.config.js │ │ │ └── tailwind.config.js │ │ ├── ts/ │ │ │ ├── index.html │ │ │ ├── output.html │ │ │ ├── prettier.config.js │ │ │ └── tailwind.config.ts │ │ ├── ts-explicit/ │ │ │ ├── config.ts │ │ │ ├── index.html │ │ │ ├── output.html │ │ │ └── prettier.config.js │ │ ├── v3-2/ │ │ │ ├── index.html │ │ │ ├── output.html │ │ │ ├── package.json │ │ │ ├── prettier.config.js │ │ │ └── tailwind.config.js │ │ ├── v3-jiti-reexport/ │ │ │ ├── index.html │ │ │ ├── output.html │ │ │ ├── package.json │ │ │ ├── packages/ │ │ │ │ └── tailwind-config/ │ │ │ │ ├── dist/ │ │ │ │ │ └── index.mjs │ │ │ │ ├── package.json │ │ │ │ └── src/ │ │ │ │ └── index.ts │ │ │ └── tailwind.config.mjs │ │ └── v4/ │ │ ├── basic/ │ │ │ ├── app.css │ │ │ ├── index.html │ │ │ ├── output.html │ │ │ └── package.json │ │ ├── css-loading-js/ │ │ │ ├── app.css │ │ │ ├── cjs/ │ │ │ │ ├── my-config.cjs │ │ │ │ └── my-plugin.cjs │ │ │ ├── esm/ │ │ │ │ ├── my-config.mjs │ │ │ │ └── my-plugin.mjs │ │ │ ├── index.html │ │ │ ├── output.html │ │ │ ├── package.json │ │ │ └── ts/ │ │ │ ├── my-config.ts │ │ │ └── my-plugin.ts │ │ └── subpath-imports/ │ │ ├── app.css │ │ ├── index.html │ │ ├── output.html │ │ ├── package.json │ │ └── theme.css │ ├── fixtures.test.ts │ ├── format.test.ts │ ├── plugins.test.ts │ ├── sorter.test.ts │ ├── tests.ts │ └── utils.ts ├── tsconfig.json ├── tsdown.config.ts └── vitest.config.ts