Commit 53996f25 authored by Lukas Eipert's avatar Lukas Eipert

Replace node-sass with sass

The node-sass project is deprecated in favor of sass, written in dart.
Apparently node-sass doesn't compile for node@16, erroring out for
community contributors and team members alike. It seems like there is
not a quick fix available for this:

https://github.com/sass/node-sass/issues/3077

Given that the project is deprecated and we do not really use it for
anything time sensitive, we can surely just replace node-sass with sass.
parent fef65601
const fs = require('fs');
const sass = require('node-sass');
const path = require('path');
const postcss = require('postcss');
const prettier = require('prettier');
const sass = require('sass');
const utils = require('./stylelint-utils');
......
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment