Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/rfs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2022-03-25Fix commentsXhmikosR
2022-03-25lib/rfs.js: throw a TypeError if options are invalidXhmikosR
2022-03-25rfs.js: fix property override (#438)XhmikosR
2021-12-01Lint tweaks (#422)XhmikosR
* switch to always using a space in object curly braces * consistently use strict mode * move a constant outside of the constructor * use Object spread instead of Object.assign * use a ternary in more places * remove redundant parentheses * enable `prefer-template` rule so that we are consistent * return early in a few cases
2021-08-04Switch to using for...of (#414)XhmikosR
2021-06-18Multiplication fix (#371)Martijn Cuppens
Co-authored-by: XhmikosR <xhmikosr@gmail.com>
2021-04-27Build(deps-dev): Bump xo from 0.38.2 to 0.39.1 (#379)dependabot[bot]
* Build(deps-dev): Bump xo from 0.38.2 to 0.39.1 Bumps [xo](https://github.com/xojs/xo) from 0.38.2 to 0.39.1. - [Release notes](https://github.com/xojs/xo/releases) - [Commits](https://github.com/xojs/xo/compare/v0.38.2...v0.39.1) Signed-off-by: dependabot[bot] <support@github.com> * Update rfs.js Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: XhmikosR <xhmikosr@gmail.com>
2020-04-14Bump xo from 0.28.3 to 0.29.1 (#246)dependabot-preview[bot]
* Bump xo from 0.28.3 to 0.29.1 Bumps [xo](https://github.com/xojs/xo) from 0.28.3 to 0.29.1. - [Release notes](https://github.com/xojs/xo/releases) - [Commits](https://github.com/xojs/xo/compare/v0.28.3...v0.29.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> * Fix the new lint errors Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> Co-authored-by: XhmikosR <xhmikosr@gmail.com>
2020-02-29Two dimensional fixBenjamin Preiss
2019-10-24Enable `unicorn/prefer-exponentiation-operator` ruleXhmikosR
2019-10-21Turn code-repeating comment into an intent comment (#173)Alex Yursha
The current comment just repeats what the code does and is not useful. My think, it will be better to specify the intent as suggested.
2019-08-28Support for every property (#144)Martijn Cuppens
- Support for all properties - Shorthand mixins for margins and paddings - Support for custom properties - Clearer way to declare `!important` rules: `@include rfs(1rem !important)` instead of `@include rfs(1rem, true)` - Switched to mobile first approach, still possible to switch to the `max-width` media queries if needed - Configuration variables are changed: - Base font size -> Base value - Font size unit -> Unit - `responsive-font-size` property changed to `rfs()` function (see https://github.com/twbs/rfs/issues/116) - Dropped `responsive-font-size` mixins - Dropped Less 2 support since we had to work with lists - Prevent generation of `/test/expected/main.css` - Additional tests for new implementations - Cleanup npm scripts examples - Code examples in `README.md` are grouped by processor and collapsed