Skip to content

Commit 3b84118

Browse files
renovate[bot]renovate-botcalebeby
authored
Update dependency @cloudfour/eslint-plugin to v17 (#1431)
Co-authored-by: Renovate Bot <[email protected]> Co-authored-by: Caleb Eby <[email protected]>
1 parent 8216267 commit 3b84118

9 files changed

+293
-190
lines changed

gulpfile.js/tasks/build-sass.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ const postcss = require('gulp-postcss');
77
const cssnano = require('cssnano');
88
sass.compiler = require('sass');
99

10-
const buildSass = () => {
11-
return src('./src/index.scss')
10+
const buildSass = () =>
11+
src('./src/index.scss')
1212
.pipe(
1313
sass({
1414
importer: [require('../../glob-sass-importer')],
@@ -20,6 +20,5 @@ const buildSass = () => {
2020
.pipe(postcss([cssnano()]))
2121
.pipe(rename({ extname: '.min.css' }))
2222
.pipe(dest(outDir));
23-
};
2423

2524
module.exports = buildSass;

gulpfile.js/tasks/build-tokens.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
const run = require('gulp-run');
22

3-
const buildTokens = () => {
4-
return run('npm run preprocess:tokens').exec();
5-
};
3+
const buildTokens = () => run('npm run preprocess:tokens').exec();
64

75
module.exports = buildTokens;

0 commit comments

Comments
 (0)