{"id":15502913,"url":"https://github.com/johno/postcss-remove-prefixes","last_synced_at":"2025-04-22T23:20:51.242Z","repository":{"id":35807127,"uuid":"40089288","full_name":"johno/postcss-remove-prefixes","owner":"johno","description":"Remove CSS vendor prefixes from your source.","archived":false,"fork":false,"pushed_at":"2017-03-17T20:43:51.000Z","size":11,"stargazers_count":20,"open_issues_count":3,"forks_count":2,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-10-19T17:29:51.558Z","etag":null,"topics":[],"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/johno.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-08-02T18:50:06.000Z","updated_at":"2024-04-12T20:09:48.000Z","dependencies_parsed_at":"2022-07-09T09:16:28.165Z","dependency_job_id":null,"html_url":"https://github.com/johno/postcss-remove-prefixes","commit_stats":null,"previous_names":["johnotander/postcss-remove-prefixes"],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/johno%2Fpostcss-remove-prefixes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/johno%2Fpostcss-remove-prefixes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/johno%2Fpostcss-remove-prefixes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/johno%2Fpostcss-remove-prefixes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/johno","download_url":"https://codeload.github.com/johno/postcss-remove-prefixes/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250338469,"owners_count":21414190,"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":[],"created_at":"2024-10-02T09:11:34.310Z","updated_at":"2025-04-22T23:20:51.204Z","avatar_url":"https://github.com/johno.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# postcss-remove-prefixes [![Build Status](https://secure.travis-ci.org/johnotander/postcss-remove-prefixes.png?branch=master)](https://travis-ci.org/johnotander/postcss-remove-prefixes)\n\nRemove pesky vendor prefixes from your source CSS files. This ensures that your prebuilt CSS is as terse and concise as possible.\n\nThough, please use [`autoprefixer`](https://github.com/postcss/autoprefixer) as part of your build process to ensure proper browser support.\n\n## Installation\n\n```bash\nnpm install --save postcss-remove-prefixes\n```\n\n## Usage\n\n```javascript\nvar postcss = require('postcss')\nvar removePrefixes = require('postcss-remove-prefixes')\n\npostcss([ removePrefixes() ]).process(myCss).css\n```\n\n#### Input\n\n```css\n.flex {\n  display: -webkit-flex;\n  display: -moz-flex;\n  display: flex;\n  -webkit-flex: 1;\n  flex: 1;\n}\n```\n\n#### Output\n\n```css\n.flex {\n  display: flex;\n  flex: 1;\n}\n```\n\nNote: It is recommended that you use this plugin with [`postcss-unprefix`](https://github.com/yisibl/postcss-unprefix) in case you are missing the unprefixed declaration in your source CSS.\n\n### CLI\n\n```sh\nnpm i -g postcss-remove-prefixes\nremove-prefixes -h\nremove-prefixes mycss.css\nremove-prefixes input.css output.css\n```\n\n## License\n\nMIT\n\n## Contributing\n\n1. Fork it\n2. Create your feature branch (`git checkout -b my-new-feature`)\n3. Commit your changes (`git commit -am 'Add some feature'`)\n4. Push to the branch (`git push origin my-new-feature`)\n5. Create new Pull Request\n\nCrafted with \u003c3 by John Otander ([@4lpine](https://twitter.com/4lpine)).\n\n***\n\n\u003e This package was initially generated with [yeoman](http://yeoman.io) and the [p generator](https://github.com/johnotander/generator-p.git).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjohno%2Fpostcss-remove-prefixes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjohno%2Fpostcss-remove-prefixes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjohno%2Fpostcss-remove-prefixes/lists"}