forked from pnp/sp-dev-fx-controls-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
23 lines (19 loc) · 777 Bytes
/
gulpfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
'use strict';
const gulp = require('gulp');
const build = require('@microsoft/sp-build-web');
const fs = require('fs');
// Update the version number in the version.ts file
gulp.task('versionUpdater', (done) => {
const pkgContents = require('./package.json');
const filePath = './src/common/telemetry/version.ts';
const fileContents = `export const version: string = "{versionPlaceholder}";`;
const newContents = fileContents.replace("{versionPlaceholder}", pkgContents.version);
console.log(`Updating version number to: ${pkgContents.version}`);
fs.writeFileSync(filePath, newContents, { encoding: "utf8" });
done();
});
build.initialize(gulp);
const karmaTask = build.karma;
if (karmaTask) {
karmaTask.taskConfig.configPath = './config/karma.config.js';
}