{"id":20573385,"url":"https://github.com/celiolatorraca/autoprefixer-tv","last_synced_at":"2025-04-14T17:23:41.249Z","repository":{"id":57187624,"uuid":"116843908","full_name":"celiolatorraca/autoprefixer-tv","owner":"celiolatorraca","description":"PostCSS plugin to split only duplicated prefixed property declarations into multiple rules.","archived":false,"fork":false,"pushed_at":"2018-11-05T23:45:14.000Z","size":30,"stargazers_count":11,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-28T06:04:26.453Z","etag":null,"topics":["postcss","postcss-plugin","react-tv","webos"],"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/celiolatorraca.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2018-01-09T16:52:24.000Z","updated_at":"2019-10-22T18:16:15.000Z","dependencies_parsed_at":"2022-08-28T13:00:14.930Z","dependency_job_id":null,"html_url":"https://github.com/celiolatorraca/autoprefixer-tv","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/celiolatorraca%2Fautoprefixer-tv","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/celiolatorraca%2Fautoprefixer-tv/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/celiolatorraca%2Fautoprefixer-tv/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/celiolatorraca%2Fautoprefixer-tv/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/celiolatorraca","download_url":"https://codeload.github.com/celiolatorraca/autoprefixer-tv/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248924417,"owners_count":21184077,"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":["postcss","postcss-plugin","react-tv","webos"],"created_at":"2024-11-16T05:27:28.043Z","updated_at":"2025-04-14T17:23:41.206Z","avatar_url":"https://github.com/celiolatorraca.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# PostCSS Autoprefixer Tv [![Build Status][ci-img]][ci]\n\n[PostCSS] plugin to split **only** duplicated prefixed property declarations into multiple rules.\n\n## Why should I use this plugin?\n\nSome of the TV manufacturers use custom webkit distributions as the engine in their applications.\n\nEspecially the WebOS TVs. The webpack distribution they use has a bug that invalidates the overwriting declarations in a same CSS definition.\n\nSo, as you can see in the example below, the property `display: flex` invalidates the previous one (`display: -webkit-flex`) which is accepted by this distribution.\n\nThis is an example of the splitting this plugin is intended to do:\n\nBefore:\n```css\n.foo {\n    display: -webkit-flex;\n    display: flex;\n    color: red;\n    height: 50px;\n    height: 100px;\n}\n```\n\nAfter:\n```css\n.foo {\n    display: -webkit-flex;\n}\n\n.foo {\n    display: flex;\n    color: red;\n    height: 50px;\n    height: 100px;\n}\n```\n\n## Usage\n\n```js\npostcss([ require('autoprefixer-tv') ])\n```\n\n### [PostCSS] - [Autoprefixer]\n\nYou can use this plugin separately, but it is well integrated with [Autoprefixer] plugin. You just need to require it after the `autoprefixer` postcss plugin.\n\n```js\npostcss([ require('autoprefixer'), require('autoprefixer-tv') ])\n```\n\n[PostCSS]: https://github.com/postcss/postcss\n[Autoprefixer]: https://github.com/postcss/autoprefixer\n[ci-img]:  https://circleci.com/gh/celiolatorraca/autoprefixer-tv.svg?style=svg\n[ci]:      https://circleci.com/gh/celiolatorraca/autoprefixer-tv\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fceliolatorraca%2Fautoprefixer-tv","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fceliolatorraca%2Fautoprefixer-tv","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fceliolatorraca%2Fautoprefixer-tv/lists"}