Merge pull request #1912 from tnajdek/js-sass-compiler
Switch to pure js sass compiler
This commit is contained in:
commit
f393a233e9
3 changed files with 1873 additions and 3701 deletions
5570
package-lock.json
generated
5570
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -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"
|
||||
}
|
||||
|
|
|
@ -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');
|
||||
|
|
Loading…
Reference in a new issue