Skip to content

Commit e4b3eb0

Browse files
committed
Rename sass to scss
1 parent dfa4466 commit e4b3eb0

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ For your convenience, the library's styles can be consumed utilizing one of the
3535

3636
* `node_modules/react-checkbox-tree/lib/react-checkbox-tree.css`
3737
* `node_modules/react-checkbox-tree/src/less/react-checkbox-tree.less`
38-
* `node_modules/react-checkbox-tree/src/sass/react-checkbox-tree.scss`
38+
* `node_modules/react-checkbox-tree/src/scss/react-checkbox-tree.scss`
3939

4040
Either include one of these files in your stylesheets or utilize a CSS loader:
4141

examples/src/style.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ $section-headings-color: #3498db;
44
$rct-color: #444;
55
$rct-border-color: #ccc;
66

7-
@import "../../src/sass/react-checkbox-tree";
7+
@import "../../src/scss/react-checkbox-tree";
88
@import "cayman";
99

1010
.react-checkbox-tree {

gulpfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ gulp.task('build-script', ['test'], () => (
4343
));
4444

4545
gulp.task('build-style', () => (
46-
gulp.src('./src/sass/**/*.scss')
46+
gulp.src('./src/scss/**/*.scss')
4747
.pipe(scsslint())
4848
.pipe(scsslint.failReporter())
4949
.pipe(sass({
@@ -88,7 +88,7 @@ gulp.task('examples', ['build-examples-style', 'build-examples-script', 'build-e
8888
browserSync.init({ server: './examples/dist' });
8989

9090
gulp.watch(['./src/js/**/*.js', './examples/src/**/*.js'], ['build-examples-script']);
91-
gulp.watch(['./src/sass/**/*.scss', './examples/src/**/*.scss'], ['build-examples-style']);
91+
gulp.watch(['./src/scss/**/*.scss', './examples/src/**/*.scss'], ['build-examples-style']);
9292
gulp.watch(['./examples/src/**/*.html'], ['build-examples-html']).on('change', browserSync.reload);
9393
});
9494

File renamed without changes.

0 commit comments

Comments
 (0)