Skip to content

Commit 63135ce

Browse files
committed
Cleanup and updates
Also updating dependencies.
1 parent eb4f18d commit 63135ce

File tree

7 files changed

+301
-314
lines changed

7 files changed

+301
-314
lines changed

builder-2d/Gruntfile.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
const sass = require('node-sass');
2+
13
module.exports = function (grunt) {
24
'use strict';
35
grunt.loadNpmTasks('grunt-sync');
@@ -76,7 +78,10 @@ module.exports = function (grunt) {
7678
clean: { 'dist': { 'src': 'dist/*' } },
7779
sass: {
7880
dist: {
79-
options: { sourceMap: true },
81+
options: {
82+
implementation: sass,
83+
sourceMap: true
84+
},
8085
files: [{
8186
expand: true,
8287
src: ['widgets/**/*.scss'],

0 commit comments

Comments
 (0)