{"id":14962179,"url":"https://github.com/lazymozek/gulp-with-tailwindcss","last_synced_at":"2025-04-06T00:08:34.377Z","repository":{"id":37536907,"uuid":"156182108","full_name":"lazymozek/gulp-with-tailwindcss","owner":"lazymozek","description":"Gulp with TailwindCSS Starter Kit","archived":false,"fork":false,"pushed_at":"2024-09-10T08:44:42.000Z","size":814,"stargazers_count":261,"open_issues_count":1,"forks_count":70,"subscribers_count":6,"default_branch":"main","last_synced_at":"2025-03-29T22:08:48.710Z","etag":null,"topics":["css","css-framework","css-in-js","gulp","gulp-starter","html","html-css","tailwind","tailwind-css","tailwindcss"],"latest_commit_sha":null,"homepage":"https://gulp-with-tailwindcss.com","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lazymozek.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-11-05T08:11:19.000Z","updated_at":"2025-03-21T10:05:00.000Z","dependencies_parsed_at":"2024-09-17T14:05:11.513Z","dependency_job_id":"9469064e-255d-4f14-a9f1-51797f1c5484","html_url":"https://github.com/lazymozek/gulp-with-tailwindcss","commit_stats":{"total_commits":73,"total_committers":5,"mean_commits":14.6,"dds":0.1643835616438356,"last_synced_commit":"f0374bb8a821a9082b8dfa9278d6fcb9b3af89b7"},"previous_names":[],"tags_count":11,"template":true,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lazymozek%2Fgulp-with-tailwindcss","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lazymozek%2Fgulp-with-tailwindcss/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lazymozek%2Fgulp-with-tailwindcss/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lazymozek%2Fgulp-with-tailwindcss/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lazymozek","download_url":"https://codeload.github.com/lazymozek/gulp-with-tailwindcss/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247415967,"owners_count":20935387,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["css","css-framework","css-in-js","gulp","gulp-starter","html","html-css","tailwind","tailwind-css","tailwindcss"],"created_at":"2024-09-24T13:29:37.509Z","updated_at":"2025-04-06T00:08:34.349Z","avatar_url":"https://github.com/lazymozek.png","language":"JavaScript","funding_links":[],"categories":["JavaScript"],"sub_categories":[],"readme":"# Gulp with TailwindCSS Starter Kit\n\nGulp with TailwindCSS v3 Starter Kit ( ~~Updated with [TailwindCSS JIT](https://github.com/tailwindlabs/tailwindcss-jit)~~ - **latest tailwind has JIT is built-in** ) - A repo that makes your development easier with predefined gulp tasks that help you to use [tailwindcss](https://github.com/tailwindcss/tailwindcss) with simple commands.\n\n## Features\n\n- Easy configuration using `config.js`\n- Live reload on file/assets changes using `browser-sync`\n- SCSS support\n- Minification of styles and scripts on production build\n- Minification of images on production build using `imagemin`\n- Includes following tailwindcss plugins (can be disabled/enabled with `config.js`)\n\n  - [@tailwindcss/forms](https://github.com/tailwindlabs/tailwindcss-forms)\n  - ~~[@tailwindcss/line-clamp](https://github.com/tailwindlabs/tailwindcss-line-clamp)~~ - Utility is included by default in Tailwind v3.3 release\n  - [@tailwindcss/typography](https://tailwindcss.com/docs/typography-plugin)\n  - [@tailwindcss/container-queries](https://github.com/tailwindlabs/tailwindcss-container-queries)\n\n## Quick Start\n\nYou can get started by clicking on `Use this template` for creating new repo using this template or simply by cloning it.\n\nInstall dev dependencies\n\n```sh\nyarn install // or npm install\n```\n\nStart development server with live preview\n\n```sh\nyarn dev // or npm run dev\n```\n\nGenerate build files for production server\n\n```sh\nyarn prod // or npm run prod\n```\n\nAll dev files are present in `src` folder. The build version can be found in `build` folder after running `yarn build` command.\n\n## Configuration\n\nAll configurations are found in `config.js` file in the root directory. You can configure browser default port, enable/disable plugins by simply updating boolean values (Default is set to `true`) and many more.\n\n```js\nconst config = {\n  tailwindjs: \"./tailwind.config.js\",\n  port: 9050, // default port\n  // purgecss options\n  purgecss: {\n    content: [\"src/**/*.{html,js,php}\"],\n    ...\n  },\n  // imagemin options for image optimizations\n  imagemin: {\n    png: [0.7, 0.7], // range between min (0) and max (1) as quality - 70% with current values for png images,\n    jpeg: 70, // % of compression for jpg, jpeg images\n  },\n};\n\n// tailwind plugins\nconst plugins = {\n  typography: true, // set to false to disable\n  forms: true,\n  containerQueries: true,\n};\n...\n```\n\n## License\n\nThis project is open source and available under the [MIT License](https://github.com/lazymozek/gulp-with-tailwindcss/blob/main/LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flazymozek%2Fgulp-with-tailwindcss","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flazymozek%2Fgulp-with-tailwindcss","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flazymozek%2Fgulp-with-tailwindcss/lists"}