├── .eslintignore ├── .eslintrc ├── .github └── workflows │ ├── ci.yml │ ├── playwright.yml │ └── update-snapshots.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── e2e ├── astro │ ├── astro.spec.ts │ └── astro.spec.ts-snapshots │ │ └── Astro-1-chromium-linux.png ├── nextjs │ ├── nextjs.spec.ts │ └── nextjs.spec.ts-snapshots │ │ ├── Next-js-1-chromium-win32.png │ │ └── nextjs-chromium-linux.png ├── nuxtjs │ ├── nuxtjs.spec.ts │ └── nuxtjs.spec.ts-snapshots │ │ └── Nuxt-js-1-chromium-linux.png ├── preact │ ├── preact.spec.ts │ └── preact.spec.ts-snapshots │ │ └── Preact-1-chromium-linux.png ├── react │ ├── react.spec.ts │ └── react.spec.ts-snapshots │ │ ├── React-1-chromium-linux.png │ │ └── React-1-chromium-win32.png ├── svelte │ ├── svelte.spec.ts │ └── svelte.spec.ts-snapshots │ │ └── Svelte-1-chromium-linux.png ├── test-configs │ ├── astro.json │ ├── nextjs.json │ ├── nuxtjs.json │ ├── preact.json │ ├── react.json │ ├── solid.json │ ├── svelte.json │ ├── vanilla.json │ └── vue.json ├── vanilla │ ├── vanilla.spec.ts │ └── vanilla.spec.ts-snapshots │ │ └── Vanilla-1-chromium-linux.png └── vue │ ├── vue.spec.ts │ └── vue.spec.ts-snapshots │ └── React-1-chromium-linux.png ├── package.json ├── playwright.config.ts ├── pnpm-lock.yaml ├── src ├── cli │ ├── commands │ │ ├── createAstro.ts │ │ ├── createNext.ts │ │ ├── createNuxt.ts │ │ ├── createSolid.ts │ │ ├── createSvelte.ts │ │ └── createVite.ts │ ├── config.ts │ ├── output │ │ ├── addPluginsTransformer.ts │ │ ├── createProject.ts │ │ ├── installDependencies.ts │ │ └── installTailwind.ts │ └── readInput.ts ├── constants.ts ├── index.ts └── utils │ ├── create-svelte.d.ts │ ├── execAsync.ts │ ├── getPackageManager.ts │ ├── getVersion.ts │ ├── installPackages.ts │ ├── logger.ts │ ├── resolvePackageManager.ts │ └── validateAppName.ts ├── templates ├── common │ ├── .prettierignore │ ├── .prettierrc │ ├── directives.css │ ├── postcss.config.js │ └── yarn.lock ├── nextjs-ts │ ├── index.tsx │ ├── postcss.config.js │ └── tailwind.config.js ├── nextjs │ ├── index.jsx │ ├── postcss.config.js │ └── tailwind.config.js ├── nuxtjs-ts │ ├── app.vue │ ├── nuxt.config.ts │ ├── pages │ │ └── index.vue │ ├── postcss.config.js │ └── tailwind.config.js ├── nuxtjs │ ├── app.vue │ ├── nuxt.config.js │ ├── pages │ │ └── index.vue │ ├── postcss.config.js │ └── tailwind.config.js ├── preact-ts │ ├── index.js │ ├── postcss.config.js │ └── tailwind.config.js ├── preact │ ├── index.js │ ├── postcss.config.js │ └── tailwind.config.js ├── react-ts │ ├── App.tsx │ ├── postcss.config.js │ └── tailwind.config.js ├── react │ ├── App.jsx │ ├── postcss.config.js │ └── tailwind.config.js ├── solid-ts │ ├── App.tsx │ ├── postcss.config.js │ └── tailwind.config.js ├── solid │ ├── App.jsx │ ├── postcss.config.js │ └── tailwind.config.js ├── svelte-kit │ ├── +layout.svelte │ ├── +page.svelte │ ├── postcss.config.js │ ├── svelte.config.js │ └── tailwind.config.js ├── vanilla-ts │ ├── index.html │ ├── main.ts │ ├── postcss.config.js │ └── tailwind.config.js ├── vanilla │ ├── index.html │ ├── main.js │ ├── postcss.config.js │ └── tailwind.config.js ├── vue-ts │ ├── App.vue │ ├── postcss.config.js │ └── tailwind.config.js └── vue │ ├── App.vue │ ├── postcss.config.js │ └── tailwind.config.js ├── test └── cli.test.ts └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/playwright.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/.github/workflows/playwright.yml -------------------------------------------------------------------------------- /.github/workflows/update-snapshots.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/.github/workflows/update-snapshots.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/README.md -------------------------------------------------------------------------------- /e2e/astro/astro.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/e2e/astro/astro.spec.ts -------------------------------------------------------------------------------- /e2e/astro/astro.spec.ts-snapshots/Astro-1-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/e2e/astro/astro.spec.ts-snapshots/Astro-1-chromium-linux.png -------------------------------------------------------------------------------- /e2e/nextjs/nextjs.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/e2e/nextjs/nextjs.spec.ts -------------------------------------------------------------------------------- /e2e/nextjs/nextjs.spec.ts-snapshots/Next-js-1-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/e2e/nextjs/nextjs.spec.ts-snapshots/Next-js-1-chromium-win32.png -------------------------------------------------------------------------------- /e2e/nextjs/nextjs.spec.ts-snapshots/nextjs-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/e2e/nextjs/nextjs.spec.ts-snapshots/nextjs-chromium-linux.png -------------------------------------------------------------------------------- /e2e/nuxtjs/nuxtjs.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/e2e/nuxtjs/nuxtjs.spec.ts -------------------------------------------------------------------------------- /e2e/nuxtjs/nuxtjs.spec.ts-snapshots/Nuxt-js-1-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/e2e/nuxtjs/nuxtjs.spec.ts-snapshots/Nuxt-js-1-chromium-linux.png -------------------------------------------------------------------------------- /e2e/preact/preact.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/e2e/preact/preact.spec.ts -------------------------------------------------------------------------------- /e2e/preact/preact.spec.ts-snapshots/Preact-1-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/e2e/preact/preact.spec.ts-snapshots/Preact-1-chromium-linux.png -------------------------------------------------------------------------------- /e2e/react/react.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/e2e/react/react.spec.ts -------------------------------------------------------------------------------- /e2e/react/react.spec.ts-snapshots/React-1-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/e2e/react/react.spec.ts-snapshots/React-1-chromium-linux.png -------------------------------------------------------------------------------- /e2e/react/react.spec.ts-snapshots/React-1-chromium-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/e2e/react/react.spec.ts-snapshots/React-1-chromium-win32.png -------------------------------------------------------------------------------- /e2e/svelte/svelte.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/e2e/svelte/svelte.spec.ts -------------------------------------------------------------------------------- /e2e/svelte/svelte.spec.ts-snapshots/Svelte-1-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/e2e/svelte/svelte.spec.ts-snapshots/Svelte-1-chromium-linux.png -------------------------------------------------------------------------------- /e2e/test-configs/astro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/e2e/test-configs/astro.json -------------------------------------------------------------------------------- /e2e/test-configs/nextjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/e2e/test-configs/nextjs.json -------------------------------------------------------------------------------- /e2e/test-configs/nuxtjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/e2e/test-configs/nuxtjs.json -------------------------------------------------------------------------------- /e2e/test-configs/preact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/e2e/test-configs/preact.json -------------------------------------------------------------------------------- /e2e/test-configs/react.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/e2e/test-configs/react.json -------------------------------------------------------------------------------- /e2e/test-configs/solid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/e2e/test-configs/solid.json -------------------------------------------------------------------------------- /e2e/test-configs/svelte.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/e2e/test-configs/svelte.json -------------------------------------------------------------------------------- /e2e/test-configs/vanilla.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/e2e/test-configs/vanilla.json -------------------------------------------------------------------------------- /e2e/test-configs/vue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/e2e/test-configs/vue.json -------------------------------------------------------------------------------- /e2e/vanilla/vanilla.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/e2e/vanilla/vanilla.spec.ts -------------------------------------------------------------------------------- /e2e/vanilla/vanilla.spec.ts-snapshots/Vanilla-1-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/e2e/vanilla/vanilla.spec.ts-snapshots/Vanilla-1-chromium-linux.png -------------------------------------------------------------------------------- /e2e/vue/vue.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/e2e/vue/vue.spec.ts -------------------------------------------------------------------------------- /e2e/vue/vue.spec.ts-snapshots/React-1-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/e2e/vue/vue.spec.ts-snapshots/React-1-chromium-linux.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/package.json -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/cli/commands/createAstro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/src/cli/commands/createAstro.ts -------------------------------------------------------------------------------- /src/cli/commands/createNext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/src/cli/commands/createNext.ts -------------------------------------------------------------------------------- /src/cli/commands/createNuxt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/src/cli/commands/createNuxt.ts -------------------------------------------------------------------------------- /src/cli/commands/createSolid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/src/cli/commands/createSolid.ts -------------------------------------------------------------------------------- /src/cli/commands/createSvelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/src/cli/commands/createSvelte.ts -------------------------------------------------------------------------------- /src/cli/commands/createVite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/src/cli/commands/createVite.ts -------------------------------------------------------------------------------- /src/cli/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/src/cli/config.ts -------------------------------------------------------------------------------- /src/cli/output/addPluginsTransformer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/src/cli/output/addPluginsTransformer.ts -------------------------------------------------------------------------------- /src/cli/output/createProject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/src/cli/output/createProject.ts -------------------------------------------------------------------------------- /src/cli/output/installDependencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/src/cli/output/installDependencies.ts -------------------------------------------------------------------------------- /src/cli/output/installTailwind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/src/cli/output/installTailwind.ts -------------------------------------------------------------------------------- /src/cli/readInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/src/cli/readInput.ts -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/utils/create-svelte.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/src/utils/create-svelte.d.ts -------------------------------------------------------------------------------- /src/utils/execAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/src/utils/execAsync.ts -------------------------------------------------------------------------------- /src/utils/getPackageManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/src/utils/getPackageManager.ts -------------------------------------------------------------------------------- /src/utils/getVersion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/src/utils/getVersion.ts -------------------------------------------------------------------------------- /src/utils/installPackages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/src/utils/installPackages.ts -------------------------------------------------------------------------------- /src/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/src/utils/logger.ts -------------------------------------------------------------------------------- /src/utils/resolvePackageManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/src/utils/resolvePackageManager.ts -------------------------------------------------------------------------------- /src/utils/validateAppName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/src/utils/validateAppName.ts -------------------------------------------------------------------------------- /templates/common/.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build/ 3 | dist/ -------------------------------------------------------------------------------- /templates/common/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/common/.prettierrc -------------------------------------------------------------------------------- /templates/common/directives.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/common/directives.css -------------------------------------------------------------------------------- /templates/common/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/common/postcss.config.js -------------------------------------------------------------------------------- /templates/common/yarn.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/nextjs-ts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/nextjs-ts/index.tsx -------------------------------------------------------------------------------- /templates/nextjs-ts/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/nextjs-ts/postcss.config.js -------------------------------------------------------------------------------- /templates/nextjs-ts/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/nextjs-ts/tailwind.config.js -------------------------------------------------------------------------------- /templates/nextjs/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/nextjs/index.jsx -------------------------------------------------------------------------------- /templates/nextjs/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/nextjs/postcss.config.js -------------------------------------------------------------------------------- /templates/nextjs/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/nextjs/tailwind.config.js -------------------------------------------------------------------------------- /templates/nuxtjs-ts/app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/nuxtjs-ts/app.vue -------------------------------------------------------------------------------- /templates/nuxtjs-ts/nuxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/nuxtjs-ts/nuxt.config.ts -------------------------------------------------------------------------------- /templates/nuxtjs-ts/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/nuxtjs-ts/pages/index.vue -------------------------------------------------------------------------------- /templates/nuxtjs-ts/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/nuxtjs-ts/postcss.config.js -------------------------------------------------------------------------------- /templates/nuxtjs-ts/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/nuxtjs-ts/tailwind.config.js -------------------------------------------------------------------------------- /templates/nuxtjs/app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/nuxtjs/app.vue -------------------------------------------------------------------------------- /templates/nuxtjs/nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/nuxtjs/nuxt.config.js -------------------------------------------------------------------------------- /templates/nuxtjs/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/nuxtjs/pages/index.vue -------------------------------------------------------------------------------- /templates/nuxtjs/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/nuxtjs/postcss.config.js -------------------------------------------------------------------------------- /templates/nuxtjs/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/nuxtjs/tailwind.config.js -------------------------------------------------------------------------------- /templates/preact-ts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/preact-ts/index.js -------------------------------------------------------------------------------- /templates/preact-ts/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/preact-ts/postcss.config.js -------------------------------------------------------------------------------- /templates/preact-ts/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/preact-ts/tailwind.config.js -------------------------------------------------------------------------------- /templates/preact/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/preact/index.js -------------------------------------------------------------------------------- /templates/preact/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/preact/postcss.config.js -------------------------------------------------------------------------------- /templates/preact/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/preact/tailwind.config.js -------------------------------------------------------------------------------- /templates/react-ts/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/react-ts/App.tsx -------------------------------------------------------------------------------- /templates/react-ts/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/react-ts/postcss.config.js -------------------------------------------------------------------------------- /templates/react-ts/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/react-ts/tailwind.config.js -------------------------------------------------------------------------------- /templates/react/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/react/App.jsx -------------------------------------------------------------------------------- /templates/react/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/react/postcss.config.js -------------------------------------------------------------------------------- /templates/react/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/react/tailwind.config.js -------------------------------------------------------------------------------- /templates/solid-ts/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/solid-ts/App.tsx -------------------------------------------------------------------------------- /templates/solid-ts/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/solid-ts/postcss.config.js -------------------------------------------------------------------------------- /templates/solid-ts/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/solid-ts/tailwind.config.js -------------------------------------------------------------------------------- /templates/solid/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/solid/App.jsx -------------------------------------------------------------------------------- /templates/solid/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/solid/postcss.config.js -------------------------------------------------------------------------------- /templates/solid/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/solid/tailwind.config.js -------------------------------------------------------------------------------- /templates/svelte-kit/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/svelte-kit/+layout.svelte -------------------------------------------------------------------------------- /templates/svelte-kit/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/svelte-kit/+page.svelte -------------------------------------------------------------------------------- /templates/svelte-kit/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/svelte-kit/postcss.config.js -------------------------------------------------------------------------------- /templates/svelte-kit/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/svelte-kit/svelte.config.js -------------------------------------------------------------------------------- /templates/svelte-kit/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/svelte-kit/tailwind.config.js -------------------------------------------------------------------------------- /templates/vanilla-ts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/vanilla-ts/index.html -------------------------------------------------------------------------------- /templates/vanilla-ts/main.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/vanilla-ts/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/vanilla-ts/postcss.config.js -------------------------------------------------------------------------------- /templates/vanilla-ts/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/vanilla-ts/tailwind.config.js -------------------------------------------------------------------------------- /templates/vanilla/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/vanilla/index.html -------------------------------------------------------------------------------- /templates/vanilla/main.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/vanilla/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/vanilla/postcss.config.js -------------------------------------------------------------------------------- /templates/vanilla/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/vanilla/tailwind.config.js -------------------------------------------------------------------------------- /templates/vue-ts/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/vue-ts/App.vue -------------------------------------------------------------------------------- /templates/vue-ts/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/vue-ts/postcss.config.js -------------------------------------------------------------------------------- /templates/vue-ts/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/vue-ts/tailwind.config.js -------------------------------------------------------------------------------- /templates/vue/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/vue/App.vue -------------------------------------------------------------------------------- /templates/vue/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/vue/postcss.config.js -------------------------------------------------------------------------------- /templates/vue/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/templates/vue/tailwind.config.js -------------------------------------------------------------------------------- /test/cli.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/test/cli.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrejJurkin/create-tw/HEAD/tsconfig.json --------------------------------------------------------------------------------