We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07f78d5 commit 74aae0aCopy full SHA for 74aae0a
gulpfile.js
@@ -39,7 +39,7 @@ gulp.task('js', function(done) {
39
});
40
41
/**
42
- * Updates version number in credit comments and window variable.
+ * Updates version number in credit comments, window variable and README.md
43
*/
44
gulp.task('update-version', function(done){
45
gulp.src([
@@ -51,6 +51,11 @@ gulp.task('update-version', function(done){
51
.pipe(replace(/(fullPage )([\d\.]+)/g, "$1" + fpPackage.version))
52
.pipe(gulp.dest('./src/'));
53
54
+ // updating readme version
55
+ gulp.src('./README.md')
56
+ .pipe(replace(/(fullPage.js-v)([\d\.]+)/g, "$1" + fpPackage.version))
57
+ .pipe(gulp.dest('./'));
58
+
59
done();
60
61
0 commit comments