Skip to content

Commit

Permalink
chore: Replace node-sass with sass
Browse files Browse the repository at this point in the history
  • Loading branch information
izkmdz committed Apr 6, 2022
1 parent f607dda commit 5cf15e5
Show file tree
Hide file tree
Showing 3 changed files with 64 additions and 693 deletions.
4 changes: 2 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ var path = require('path'),
getCodeVersion = require('silvermine-serverless-utils/src/get-code-version'),
markdownlint = require('markdownlint');

const sass = require('node-sass');
const sass = require('sass');

module.exports = function(grunt) {

Expand All @@ -23,7 +23,7 @@ module.exports = function(grunt) {
},

sass: {
base: path.join(__dirname, 'src', 'sass'),
base: path.join(__dirname, 'src', 'scss'),
all: [ 'src/**/*.scss' ],
},

Expand Down
Loading

0 comments on commit 5cf15e5

Please sign in to comment.