sp-dev-fx-webparts/samples/react-questions-and-answers/gulpfile.js

13 lines
388 B
JavaScript
Raw Normal View History

2020-09-20 12:12:43 -04:00
'use strict';
const gulp = require('gulp');
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.`);
build.initialize(gulp);
var runSequence = require('run-sequence');
gulp.task('package', function (cb) {
runSequence('clean', 'build', 'bundle', 'package-solution', cb);
2020-09-20 12:12:43 -04:00
});