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) {
|
2021-03-24 17:05:12 -04:00
|
|
|
runSequence('clean', 'build', 'bundle', 'package-solution', cb);
|
2020-09-20 12:12:43 -04:00
|
|
|
});
|