2021-02-10 23:59:54 -05:00
|
|
|
'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.`);
|
|
|
|
|
|
|
|
const argv = build.rig.getYargs().argv;
|
|
|
|
const useCustomServe = argv['custom-serve'];
|
|
|
|
const fs = require("fs");
|
|
|
|
const workbenchApi = require("@microsoft/sp-webpart-workbench/lib/api");
|
|
|
|
|
|
|
|
if (useCustomServe) {
|
|
|
|
build.tslintCmd.enabled = false;
|
|
|
|
|
|
|
|
const ensureWorkbenchSubtask = build.subTask('ensure-workbench-task', function (gulp, buildOptions, done) {
|
|
|
|
this.log('Creating workbench.html file...');
|
|
|
|
try {
|
|
|
|
workbenchApi.default["/workbench"]();
|
|
|
|
} catch (e) { }
|
|
|
|
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
|
|
|
|
build.rig.addPostBuildTask(build.task('ensure-workbench', ensureWorkbenchSubtask));
|
|
|
|
|
|
|
|
build.configureWebpack.mergeConfig({
|
|
|
|
additionalConfiguration: (generatedConfiguration) => {
|
|
|
|
fs.writeFileSync("./temp/_webpack_config.json", JSON.stringify(generatedConfiguration, null, 2));
|
|
|
|
return generatedConfiguration;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
build.initialize(require('gulp'));
|
|
|
|
|