mirror of
https://github.com/twbs/bootstrap.git
synced 2025-09-30 23:36:47 +02:00
* Reorganize scss folder * Migrate to Sass modules * Migrate docs to Sass modules, comment out docs grid CSS * Give helpers folder an index.scss, migrate ratio helper to aspect-ratio utility * Delete node sass Action * Modify Sass tests to pass for new Sass modules implementation * Don't disallow calc() * Move heading classes back to Reboot to prevent a dependency * Utilities, some helpers, and theme colors * Temporary fix of docs compilation * Temporary Bundlewatch fix * docs fix import to use * Restyle docs callouts * Fix docs colors * Revert typo * Reintroduce `css-lint-vars` npm script * Bump to Sass v1.90.x * Fixes * more * Remove --------- Co-authored-by: Julien Déramond <juderamond@gmail.com>
18 lines
495 B
JavaScript
18 lines
495 B
JavaScript
/* eslint-disable camelcase */
|
|
|
|
'use strict'
|
|
|
|
const path = require('node:path')
|
|
|
|
module.exports = {
|
|
spec_dir: 'scss',
|
|
// Make Jasmine look for `.test.scss` files
|
|
// spec_files: ['**/*.{test,spec}.scss'],
|
|
spec_files: ['**/_utilities.test.scss'],
|
|
// Compile them into JS scripts running `sass-true`
|
|
requires: [path.join(__dirname, 'sass-true/register')],
|
|
// Ensure we use `require` so that the require.extensions works
|
|
// as `import` completely bypasses it
|
|
jsLoader: 'require'
|
|
}
|