Skip to content

Commit

Permalink
Update dependency @cloudfour/eslint-plugin to v17 (#1431)
Browse files Browse the repository at this point in the history
Co-authored-by: Renovate Bot <[email protected]>
Co-authored-by: Caleb Eby <[email protected]>
  • Loading branch information
3 people authored Jul 22, 2021
1 parent 8216267 commit 3b84118
Show file tree
Hide file tree
Showing 9 changed files with 293 additions and 190 deletions.
5 changes: 2 additions & 3 deletions gulpfile.js/tasks/build-sass.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ const postcss = require('gulp-postcss');
const cssnano = require('cssnano');
sass.compiler = require('sass');

const buildSass = () => {
return src('./src/index.scss')
const buildSass = () =>
src('./src/index.scss')
.pipe(
sass({
importer: [require('../../glob-sass-importer')],
Expand All @@ -20,6 +20,5 @@ const buildSass = () => {
.pipe(postcss([cssnano()]))
.pipe(rename({ extname: '.min.css' }))
.pipe(dest(outDir));
};

module.exports = buildSass;
4 changes: 1 addition & 3 deletions gulpfile.js/tasks/build-tokens.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
const run = require('gulp-run');

const buildTokens = () => {
return run('npm run preprocess:tokens').exec();
};
const buildTokens = () => run('npm run preprocess:tokens').exec();

module.exports = buildTokens;
Loading

0 comments on commit 3b84118

Please sign in to comment.