2017-06-18 11:07:24 -04:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
const gulp = require('gulp');
|
|
|
|
const build = require('@microsoft/sp-build-web');
|
|
|
|
|
2020-09-06 09:14:30 -04:00
|
|
|
build.task('prepare-solution', {
|
|
|
|
execute: (config) => {
|
|
|
|
return new Promise((resolve, reject) => {
|
2020-09-24 12:42:38 -04:00
|
|
|
gulp.src('sharepoint/assets-temp/e89b5ad5-9ab5-4730-a66b-e1f68994598c.json')
|
2020-09-06 09:14:30 -04:00
|
|
|
.pipe(gulp.dest('temp/deploy'));
|
|
|
|
|
|
|
|
resolve();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2017-06-18 11:07:24 -04:00
|
|
|
build.initialize(gulp);
|