Skip to content

Commit 883bebe

Browse files
committed
3d - add subwidget example
1 parent 20bb94f commit 883bebe

File tree

10 files changed

+367
-325
lines changed

10 files changed

+367
-325
lines changed

builder-3d/Gruntfile.js

Lines changed: 8 additions & 2 deletions
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');
@@ -50,7 +52,8 @@ module.exports = function (grunt) {
5052
],
5153
options: {
5254
spawn: false,
53-
atBegin: true
55+
atBegin: true,
56+
livereload: true
5457
}
5558
}
5659
},
@@ -75,7 +78,10 @@ module.exports = function (grunt) {
7578
clean: { 'dist': { 'src': 'dist/*' } },
7679
sass: {
7780
dist: {
78-
options: { sourceMap: true },
81+
options: {
82+
implementation: sass,
83+
sourceMap: true
84+
},
7985
files: [{
8086
expand: true,
8187
src: ['widgets/**/*.scss'],

0 commit comments

Comments
 (0)