Merge pull request #1912 from tnajdek/js-sass-compiler

Switch to pure js sass compiler
This commit is contained in:
Dan Stillman 2020-11-18 15:23:38 -05:00 committed by GitHub
commit f393a233e9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 1873 additions and 3701 deletions

5570
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -47,8 +47,8 @@
"jspath": "^0.4.0",
"mocha": "^3.5.3",
"multimatch": "^2.1.0",
"node-sass": "^4.14.1",
"react-virtualized": "^9.21.0",
"sass": "^1.28.0",
"sinon": "^7.3.2",
"universalify": "^0.1.1"
}

View file

@ -1,7 +1,7 @@
'use strict';
const universalify = require('universalify');
const sass = require('node-sass');
const sass = require('sass');
const globby = require('globby');
const path = require('path');
const fs = require('fs-extra');