Skip to content

Commit

Permalink
feat:(frontend) Setup sass-based css design system(#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
nancymuyeh committed Mar 6, 2024
1 parent a1ebdd6 commit 6dc0649
Show file tree
Hide file tree
Showing 4 changed files with 5,589 additions and 1,155 deletions.
17 changes: 17 additions & 0 deletions power-pay-frontend/gulpfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
/* eslint-disable no-undef */
/* eslint-disable @typescript-eslint/no-var-requires */
const { src, dest, watch, series } = require('gulp')
const sass = require('gulp-sass')(require('sass'))


function compile() {
return src('sass/**/*.scss')
.pipe(sass())
.pipe(dest('css'))
}

function watchTask() {
watch(['sass/**/*.scss'], compile)

}
exports.default = series(compile, watchTask)
Loading

0 comments on commit 6dc0649

Please sign in to comment.