ReactIntern 26a2fa7c9a Upgraded web part v.12 + Teams Tab supported
I upgraded the web part to version 1.12.1 for higher compatibility and added Teams Tab deployment support.
2021-10-08 19:08:02 -04:00

16 lines
406 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'));