Skip to content
This repository was archived by the owner on Feb 21, 2025. It is now read-only.

Commit a7db119

Browse files
author
blaryjp
authored
Merge pull request #1 from ovh-ux/bugfix/typo
style(*): fix words SCSS and LibSass.
2 parents 8c4945b + c60eea7 commit a7db119

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ This theme core is to be included in your main project and sets up many Gulp tas
99

1010
## Features
1111

12-
- SCSS => CSS compiling with Libsass, PostCSS, linting, and SourceMaps
12+
- SCSS => CSS compiling with LibSass, PostCSS, linting, and SourceMaps
1313
- JS compiling via Babel, linting and aggregation
1414
- WebPack module bundling
15-
- SVG => Font Icons compiling with support for adding mixins and classes to Scss along with a demo page
15+
- SVG => Font Icons compiling with support for adding mixins and classes to SCSS along with a demo page
1616
- Drupal file watching to trigger Drush cache clears
1717

1818
All is easily configurable by changing values in your `gulpfile.yml` file in your project. These values are merged into the `gulpfile.default.yml` file - look there for the available options and defaults.

docs/css.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# SCSS
22

3-
Compiles Scss to CSS using [`gulp-sass`](https://github.com/dlmanning/gulp-sass), which in turn uses `node-sass`, which in turn uses `libsass`.
3+
Compiles SCSS to CSS using [`gulp-sass`](https://github.com/dlmanning/gulp-sass), which in turn uses `node-sass`, which in turn uses `libsass`.
44

55
## Usage
66

@@ -15,14 +15,14 @@ You can create individual CSS files bundle, using the config:
1515

1616
## Commands
1717

18-
- `gulp css` - Compile Scss to CSS
18+
- `gulp css` - Compile SCSS to CSS
1919
- `gulp watch:css` - Watch and compile
20-
- `gulp validate:css` - Test Scss with [`gulp-sass-lint`](https://github.com/sasstools/gulp-sass-lint), which uses [`sass-lint`](https://github.com/sasstools/sass-lint) (Pure node.js - no Ruby)
20+
- `gulp validate:css` - Test SCSS with [`gulp-sass-lint`](https://github.com/sasstools/gulp-sass-lint), which uses [`sass-lint`](https://github.com/sasstools/sass-lint) (Pure node.js - no Ruby)
2121

2222
## Config
2323

24-
- `config.css.src` - Array of Scss files
24+
- `config.css.src` - Array of SCSS files
2525
- `config.css.dest` - String of Destination directory for CSS
2626
- `config.css.lint` - Boolean for if Linting should occur
27-
- `config.css.sourceComments` - Boolean - Enable comments written in CSS that shows Scss source. **Don't turn on permanently**, it's useful if SourceMaps aren't working.
27+
- `config.css.sourceComments` - Boolean - Enable comments written in CSS that shows SCSS source. **Don't turn on permanently**, it's useful if SourceMaps aren't working.
2828
- `config.css.autoPrefixerBrowsers` - Array of [Browsers to Support](https://github.com/ai/browserslist#queries) for Autoprefixer (used by PostCSS).

lib/css.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ module.exports = (gulp, config, tasks) => {
5353
});
5454
}
5555

56-
cssCompile.description = 'Compile Scss to CSS using Libsass with Autoprefixer and SourceMaps';
56+
cssCompile.description = 'Compile SCSS to CSS using LibSass with Autoprefixer and SourceMaps';
5757

5858
gulp.task('css', done => cssCompile(done, true));
5959

@@ -82,7 +82,7 @@ module.exports = (gulp, config, tasks) => {
8282
return validateCss(false);
8383
}
8484

85-
validateCss.description = 'Lint Scss files';
85+
validateCss.description = 'Lint SCSS files';
8686

8787
gulp.task('validate:css', () => validateCss(true));
8888

@@ -122,7 +122,7 @@ module.exports = (gulp, config, tasks) => {
122122
return gulp.watch(src, gulp.parallel(watchTasks));
123123
}
124124

125-
watchCss.description = 'Watch Scss';
125+
watchCss.description = 'Watch SCSS';
126126

127127
gulp.task('watch:css', watchCss);
128128

lib/icons.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ module.exports = (gulp, config, tasks) => {
1717
_.templateSettings.evaluate = /{%([\s\S]+?)%}/g;
1818

1919
/**
20-
* Build font icons from SVG files and optionally make scss and demo templates.
20+
* Build font icons from SVG files and optionally make SCSS and demo templates.
2121
* @param done {function} - Callback when all done.
2222
*/
2323
function icons(done) {

templates/_icons.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ $font-icons: ({% _.each(glyphs, function(glyph) { %}
5555
/// @param {String} $size [inherit]
5656
/// @param {String} $color [inherit]
5757
/// @param {Bool} $block [false] - If `display: block` should be applied.
58-
/// @example scss
58+
/// @example SCSS
5959
/// .class {
6060
/// @include icon('close');
6161
/// }

0 commit comments

Comments
 (0)