Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
agragregra committed Jan 22, 2025
1 parent b207401 commit d042d80
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
6 changes: 5 additions & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,11 @@ function js() {

function sass() {
return src('app/sass/**/*.sass')
.pipe(sassModule())
.pipe(sassModule({
'include css': true,
silenceDeprecations: ['legacy-js-api', 'mixed-decls', 'color-functions', 'global-builtin', 'import'],
loadPaths: ['./']
})).on('error', function handleError() { this.emit('end') })
.pipe(postCss([
autoprefixer({ grid: 'autoplace' }),
cssnano({ preset: ['default', { discardComments: { removeAll: true } }] })
Expand Down
7 changes: 3 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "optimizedhtml",
"version": "3.1.0",
"version": "3.2.0",
"description": "OptimizedHTML - Start HTML Template",
"main": "index.js",
"author": "WebDesign Master",
Expand All @@ -19,13 +19,12 @@
"gulp-cache": "^1.1.3",
"gulp-concat": "^2.6.1",
"gulp-imagemin": "^9.1.0",
"gulp-notify": "^5.0.0",
"gulp-postcss": "^10.0.0",
"gulp-rename": "^2.0.0",
"gulp-rsync": "0.1.0",
"gulp-sass": "^5.1.0",
"gulp-sass": "^6.0.0",
"gulp-uglify": "^3.0.2",
"sass": "^1.83.0",
"sass": "^1.83.4",
"vinyl-ftp": "^0.6.1"
}
}

0 comments on commit d042d80

Please sign in to comment.