{"id":13484303,"url":"https://github.com/sindresorhus/gulp-autoprefixer","last_synced_at":"2025-05-14T17:09:52.468Z","repository":{"id":20518472,"uuid":"23797315","full_name":"sindresorhus/gulp-autoprefixer","owner":"sindresorhus","description":"Prefix CSS","archived":false,"fork":false,"pushed_at":"2023-11-02T16:52:28.000Z","size":40,"stargazers_count":692,"open_issues_count":8,"forks_count":45,"subscribers_count":24,"default_branch":"main","last_synced_at":"2025-05-07T17:31:09.942Z","etag":null,"topics":["autoprefixer","css","gulp-plugin","javascript","nodejs","postcss","prefix-css"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"vaibhavpandeyvpz/doctrine-datatables","license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sindresorhus.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":".github/funding.yml","license":"license","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":".github/security.md","support":null,"governance":null,"roadmap":null,"authors":null},"funding":{"github":"sindresorhus","open_collective":"sindresorhus","custom":"https://sindresorhus.com/donate"}},"created_at":"2014-09-08T15:51:24.000Z","updated_at":"2025-03-15T20:57:39.000Z","dependencies_parsed_at":"2024-01-17T13:12:44.587Z","dependency_job_id":"d9ff8c78-9415-4c4e-a7c3-da46f8bbafb5","html_url":"https://github.com/sindresorhus/gulp-autoprefixer","commit_stats":{"total_commits":68,"total_committers":11,"mean_commits":6.181818181818182,"dds":0.1470588235294118,"last_synced_commit":"4b215c5fd700bf6d574e64855328422e1cdb076d"},"previous_names":[],"tags_count":21,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sindresorhus%2Fgulp-autoprefixer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sindresorhus%2Fgulp-autoprefixer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sindresorhus%2Fgulp-autoprefixer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sindresorhus%2Fgulp-autoprefixer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sindresorhus","download_url":"https://codeload.github.com/sindresorhus/gulp-autoprefixer/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253666723,"owners_count":21944714,"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":["autoprefixer","css","gulp-plugin","javascript","nodejs","postcss","prefix-css"],"created_at":"2024-07-31T17:01:22.138Z","updated_at":"2025-05-14T17:09:52.448Z","avatar_url":"https://github.com/sindresorhus.png","language":"JavaScript","funding_links":["https://github.com/sponsors/sindresorhus","https://opencollective.com/sindresorhus","https://sindresorhus.com/donate"],"categories":["JavaScript"],"sub_categories":[],"readme":"# gulp-autoprefixer\n\n\u003e Prefix CSS with [Autoprefixer](https://github.com/postcss/autoprefixer)\n\n*Issues with the output should be reported on the Autoprefixer [issue tracker](https://github.com/postcss/autoprefixer/issues).*\n\n## Install\n\n```sh\nnpm install --save-dev gulp-autoprefixer\n```\n\n## Usage\n\n```js\nimport gulp from 'gulp';\nimport autoprefixer from 'gulp-autoprefixer';\n\nexport default () =\u003e (\n\tgulp.src('src/app.css')\n\t\t.pipe(autoprefixer({\n\t\t\tcascade: false\n\t\t}))\n\t\t.pipe(gulp.dest('dist'))\n);\n```\n\n## API\n\n### autoprefixer(options?)\n\n#### options\n\nType: `object`\n\nSee the Autoprefixer [options](https://github.com/postcss/autoprefixer#options).\n\n## Source Maps\n\nUse [gulp-sourcemaps](https://github.com/gulp-sourcemaps/gulp-sourcemaps) like this:\n\n```js\nimport gulp from 'gulp';\nimport sourcemaps from 'gulp-sourcemaps';\nimport concat from 'gulp-concat';\nimport autoprefixer from 'gulp-autoprefixer';\n\nexport default () =\u003e (\n\tgulp.src('src/**/*.css')\n\t\t.pipe(sourcemaps.init())\n\t\t.pipe(autoprefixer())\n\t\t.pipe(concat('all.css'))\n\t\t.pipe(sourcemaps.write('.'))\n\t\t.pipe(gulp.dest('dist'))\n);\n```\n\n## Tip\n\nIf you use other PostCSS based tools, like `cssnano`, you may want to run them together using [`gulp-postcss`](https://github.com/postcss/autoprefixer#gulp) instead of `gulp-autoprefixer`. It will be faster, as the CSS is parsed only once for all PostCSS based tools, including Autoprefixer.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsindresorhus%2Fgulp-autoprefixer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsindresorhus%2Fgulp-autoprefixer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsindresorhus%2Fgulp-autoprefixer/lists"}