{"id":15041694,"url":"https://github.com/lkummer/break","last_synced_at":"2026-01-06T08:11:12.957Z","repository":{"id":40285837,"uuid":"264537933","full_name":"LKummer/break","owner":"LKummer","description":"Sass media query breakpoint systemization library.","archived":false,"fork":false,"pushed_at":"2023-01-06T06:06:44.000Z","size":1031,"stargazers_count":0,"open_issues_count":13,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-01T15:22:15.107Z","etag":null,"topics":["breakpoints","mixins","sass"],"latest_commit_sha":null,"homepage":"https://lkummer.github.io/break/","language":"SCSS","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/LKummer.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":"2020-05-16T22:19:14.000Z","updated_at":"2020-09-15T16:57:10.000Z","dependencies_parsed_at":"2023-02-05T12:00:54.006Z","dependency_job_id":null,"html_url":"https://github.com/LKummer/break","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LKummer%2Fbreak","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LKummer%2Fbreak/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LKummer%2Fbreak/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LKummer%2Fbreak/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LKummer","download_url":"https://codeload.github.com/LKummer/break/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245831495,"owners_count":20679699,"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":["breakpoints","mixins","sass"],"created_at":"2024-09-24T20:46:22.866Z","updated_at":"2026-01-06T08:11:07.915Z","avatar_url":"https://github.com/LKummer.png","language":"SCSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"Break is a library of Sass mixins that ease the creation of systemized media query\nbreakpoints.\n\nFor more information [see the documentation](https://lkummer.github.io/break/).\n\nTo get started quickly\n[read the Getting Started guide](https://lkummer.github.io/break/guide/getting-started/).\n\n# Quick Start Guide\n\n[Break is available on NPM](https://www.npmjs.com/package/@lkummer/break).\n\n```\n$ npm add -D @lkummer/break\n$ yarn add --dev @lkummer/break\n```\n\nWith the module installed, systemized breakpoints can be defined and media queries\ncan be created with mixins.\n\n```scss\n@use '@lkummer/break' as break;\n\n$breakpoints: (\n  'small': (\n    'upper': 780px\n  ),\n  'large': (\n    'lower': 781px\n  )\n);\n\n.element {\n  // Media query enabled on small screens and under.\n  @include break.media-under('small', $breakpoints) {\n    // @content is placed in the media query.\n    background: blue;\n  }\n}\n```\n\nYielding the following output once processed.\n\n```css\n.element {\n  @media (max-width: 780px) {\n    background: blue;\n  }\n}\n```\n\n[Read the Getting Started guide](https://lkummer.github.io/break/guide/getting-started/).\n\n# Development Guide\n\nBefore running the development scripts, make sure to download the dependencies.\n\n```\n$ yarn install\n```\n\n## Testing\n\nSass functionality is tested using True. [More information\ncan be found here](https://www.oddbird.net/true/docs/index.html).\n\nTests can be run using the `test` script.\n\n```\n$ yarn run test\n```\n\n## Linting\n\nLinting can be run using the `lint` script.\n\n```\n$ yarn run lint\n```\n\n## Formatting\n\nStyle enforcement is done using Prettier.\nFiles can be formatted using the `format` script.\n\n```\n$ yarn run format\n```\n\n## Documentation\n\nThe `doc` script builds the documentation in the `dist/doc` directory.\n\n```\n$ yarn run doc\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flkummer%2Fbreak","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flkummer%2Fbreak","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flkummer%2Fbreak/lists"}