Migrate from node-sass to sass

node-sass is deprecated and doesn't work on Node 16.
sass is actively maintained and considered the canonical sass
implementation.
This commit is contained in:
Nick O'Leary
2021-05-11 18:13:21 +01:00
parent 9cdec156dc
commit b77cd56a01
4 changed files with 55 additions and 54 deletions

View File

@@ -16,7 +16,7 @@
var path = require("path");
var fs = require("fs-extra");
var sass = require("node-sass");
var sass = require("sass");
module.exports = function(grunt) {