aboutsummaryrefslogtreecommitdiff
path: root/scss/tests
AgeCommit message (Collapse)AuthorFilesLines
2023-12-23Build(deps-dev): Bump stylelint and stylelint-config-twbs-bootstrap (#39527)dependabot[bot]1-1/+1
* Build(deps-dev): Bump stylelint and stylelint-config-twbs-bootstrap Bumps [stylelint](https://github.com/stylelint/stylelint) and [stylelint-config-twbs-bootstrap](https://github.com/twbs/stylelint-config-twbs-bootstrap). These dependencies needed to be updated together. Updates `stylelint` from 15.11.0 to 16.0.2 - [Release notes](https://github.com/stylelint/stylelint/releases) - [Changelog](https://github.com/stylelint/stylelint/blob/main/CHANGELOG.md) - [Commits](https://github.com/stylelint/stylelint/compare/15.11.0...16.0.2) Updates `stylelint-config-twbs-bootstrap` from 12.0.0 to 13.0.0 - [Release notes](https://github.com/twbs/stylelint-config-twbs-bootstrap/releases) - [Commits](https://github.com/twbs/stylelint-config-twbs-bootstrap/compare/v12.0.0...v13.0.0) --- updated-dependencies: - dependency-name: stylelint dependency-type: direct:development update-type: version-update:semver-major - dependency-name: stylelint-config-twbs-bootstrap dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * Update _utilities.test.scss * Update blog.css * Update blog.rtl.css --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: XhmikosR <[email protected]>
2023-11-14Fix Sass compilation breaking change in v5.3 (#39380)Julien Déramond1-0/+7
2023-04-11Update devDependencies (#38437)XhmikosR1-1/+1
* Update devDependencies * @babel/preset-env ^7.20.2 → ^7.21.4 * @rollup/plugin-node-resolve ^15.0.1 → ^15.0.2 * eslint ^8.37.0 → ^8.38.0 * rtlcss ^4.0.0 → ^4.1.0 * sass ^1.60.0 → ^1.61.0 * stylelint ^14.16.1 → ^15.4.0 * stylelint-config-twbs-bootstrap ^7.0.0 → ^9.0.1 * vnu-jar 22.9.29 → 23.4.11 * Fix the new Stylelint issues
2023-03-29Tweak and re-organize ESLint config (#38369)XhmikosR3-7/+2
* Tweak and re-organize ESLint config * merge individual configs to the root config * enable more eslint-plugin-import rules * lint markdown files * Lint
2023-03-26Add `media-query` color mode Sass test (#38326)Julien Déramond1-0/+8
2023-03-07Fix missing modifications when `--bs-{color}-text` was changed to ↵Julien Déramond1-4/+4
`--bs-{color}-text-emphasis` (#38176)
2023-02-13Fix `$grid-breakpoints` SCSS unit tests init (#38037)Julien Déramond1-6/+5
2023-01-11Add theme maps specific to dark mode (#37843)Julien Déramond1-0/+1
* Add theme maps specific to dark mode * Fix CSS building * Fix other failing test Co-authored-by: Mark Otto <[email protected]>
2022-12-29Build(deps-dev): Bump sass-true from 6.1.0 to 7.0.0Julien Déramond1-4/+6
2022-12-25Make scss tests work on Windows too. (#37713)XhmikosR3-12/+20
Also, add missing `'use strict'` statements; these aren't real modules.
2022-12-24SCSS testing of the utilities API (#36029)Romaric Pascal6-0/+579
* Set up CSS testing using sass-true and mocha Use mocha to handle the heavy lifting of finding tests and running them. Mocha is made to look directly for SCSS files which are compiled thanks to Node's require.extensions mechanism. * Add CSS tests to workflow * Add tests for the generate-utility mixin * Add tests for utilities generation * Fix linting issues * Fix test contents Don't know why the whole utilities.test.scss ended up copied in the api.test.scss * Remove unnecessary entry in package.json * Move to Jasmine for running the tests * Move running of CSS tests before CSS build * Update linting set up Add exceptions for test files in stylelint * Remove irrelevant option for sass-true * Fix linting issues after rebase * Add color mode tests * Fix linter Co-authored-by: Mark Otto <[email protected]>