chore: Replace node-sass with sass

This commit is contained in:
Isaak Mendoza 2022-02-15 13:50:20 -08:00
parent f607ddaf01
commit 5cf15e5b01
3 changed files with 73 additions and 702 deletions

View file

@ -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) {
@ -23,7 +23,7 @@ module.exports = function(grunt) {
},
sass: {
base: path.join(__dirname, 'src', 'sass'),
base: path.join(__dirname, 'src', 'scss'),
all: [ 'src/**/*.scss' ],
},