sp-dev-fx-webparts/gulpfile.js
Sandeep P S b27c175e3c init: award recognition solution
Signed-off-by: Sandeep P S <sandeep.ps@quadrasystems.net>
2023-11-17 17:51:16 +05:30

17 lines
407 B
JavaScript

'use strict';
const build = require('@microsoft/sp-build-web');
build.addSuppression(`Warning - [sass] The local CSS class 'ms-Grid' is not camelCase and will not be type-safe.`);
var getTasks = build.rig.getTasks;
build.rig.getTasks = function () {
var result = getTasks.call(build.rig);
result.set('serve', result.get('serve-deprecated'));
return result;
};
build.initialize(require('gulp'));