Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
danielfdsilva committed Apr 22, 2024
1 parent 11a9ca3 commit 7419b8c
Show file tree
Hide file tree
Showing 4 changed files with 1,456 additions and 479 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
- 'develop'

env:
NODE: 10
NODE: 14

jobs:
build:
Expand Down
6 changes: 4 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ var revReplace = require('gulp-rev-replace')
var notifier = require('node-notifier')
var cp = require('child_process')
var YAML = require('yamljs')
var SassString = require('node-sass').types.String
var nodeSass = require('node-sass')
const sass = require('gulp-sass')(nodeSass)
var SassString = nodeSass.types.String
const { compile } = require('collecticons-processor')

// /////////////////////////////////////////////////////////////////////////////
Expand Down Expand Up @@ -227,7 +229,7 @@ gulp.task('styles', function () {
this.emit('end')
}))
.pipe($.sourcemaps.init())
.pipe($.sass({
.pipe(sass({
outputStyle: 'expanded',
precision: 10,
functions: {
Expand Down
Loading

0 comments on commit 7419b8c

Please sign in to comment.