{"id":16716321,"url":"https://github.com/gucong3000/postcss-unprefix","last_synced_at":"2025-08-04T09:34:55.708Z","repository":{"id":57327852,"uuid":"57345611","full_name":"gucong3000/postcss-unprefix","owner":"gucong3000","description":"Clean CSS vendor prefixes from your source.","archived":false,"fork":false,"pushed_at":"2020-06-02T13:45:26.000Z","size":244,"stargazers_count":35,"open_issues_count":17,"forks_count":4,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-03T07:07:02.657Z","etag":null,"topics":["postcss"],"latest_commit_sha":null,"homepage":null,"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/gucong3000.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}},"created_at":"2016-04-29T01:33:43.000Z","updated_at":"2025-06-18T14:49:12.000Z","dependencies_parsed_at":"2022-09-17T11:12:42.240Z","dependency_job_id":null,"html_url":"https://github.com/gucong3000/postcss-unprefix","commit_stats":null,"previous_names":["gucong3000/postcss-clean-prefixes"],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/gucong3000/postcss-unprefix","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gucong3000%2Fpostcss-unprefix","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gucong3000%2Fpostcss-unprefix/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gucong3000%2Fpostcss-unprefix/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gucong3000%2Fpostcss-unprefix/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gucong3000","download_url":"https://codeload.github.com/gucong3000/postcss-unprefix/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gucong3000%2Fpostcss-unprefix/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268675618,"owners_count":24288313,"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","status":"online","status_checked_at":"2025-08-04T02:00:09.867Z","response_time":79,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["postcss"],"created_at":"2024-10-12T21:12:57.422Z","updated_at":"2025-08-04T09:34:55.678Z","avatar_url":"https://github.com/gucong3000.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"[postcss](https://github.com/postcss/postcss)-unprefix\n=====\n\nUnprefixes vendor prefixes in legacy CSS.\n\n[![NPM version](https://img.shields.io/npm/v/postcss-unprefix.svg?style=flat-square)](https://www.npmjs.com/package/postcss-unprefix)\n[![Travis](https://img.shields.io/travis/gucong3000/postcss-unprefix.svg)](https://travis-ci.org/gucong3000/postcss-unprefix)\n[![Codecov](https://img.shields.io/codecov/c/github/gucong3000/postcss-unprefix.svg)](https://codecov.io/gh/gucong3000/postcss-unprefix)\n[![David](https://img.shields.io/david/gucong3000/postcss-unprefix.svg)](https://david-dm.org/gucong3000/postcss-unprefix)\n\nThough, please use [`autoprefixer`](https://github.com/postcss/autoprefixer) as part of your build process to ensure proper browser support.\n\n![Gif Deom](http://ww3.sinaimg.cn/bmiddle/534b48acgw1et7jyprmj3g20b40ciaes.gif)\n\n## Installation\n\n```bash\nnpm install --save postcss-unprefix\n```\n\n## Usage\n\n```javascript\nvar postcss = require(\"gulp-html-postcss\");\nvar unprefix = require(\"postcss-unprefix\");\nvar autoprefixer = require(\"autoprefixer\");\n\ngulp.task(\"clear-css\", function () {\n\tvar processors = [\n\t\tunprefix,\n\t\tautoprefixer,\n\t];\n\treturn gulp.src(\"./src/**/*.css\")\n\t\t.pipe(postcss(processors))\n\t\t.pipe(gulp.dest('./dest'));\n});\n```\n\n#### Input\n\n```css\n.flex {\n\tdisplay: -webkit-flex;\n\tdisplay: -moz-flex;\n\t-webkit-flex: 1;\n}\n```\n\n#### Output\n\n```css\n.flex {\n\tdisplay: flex;\n\tflex: 1;\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgucong3000%2Fpostcss-unprefix","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgucong3000%2Fpostcss-unprefix","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgucong3000%2Fpostcss-unprefix/lists"}