Skip to content

Commit

Permalink
version changed to 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mi-prakash committed Apr 17, 2024
1 parent 991a3ab commit bfee277
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
<authorEmail>[email protected]</authorEmail>
<authorUrl>https://github.com/mi-prakash</authorUrl>
<version>1.0.0</version>
<version>1.1.0</version>
<description>A Simple module for Dark Mode On/Off switch. Publish the module on position "status"</description>
<files>
<filename module="mod_mip_darkmode_switch">mod_mip_darkmode_switch.php</filename>
Expand Down
4 changes: 2 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ gulp.task("clean_build", function () {
});

gulp.task("clean_zip", function () {
return gulp.src("./mod_mip_darkmode_switch_v1.0.0.zip", { read: false, allowEmpty: true }).pipe(clean());
return gulp.src("./mod_mip_darkmode_switch_v1.1.0.zip", { read: false, allowEmpty: true }).pipe(clean());
});

gulp.task(
"default",
gulp.series("clean_zip", "clean_build", "copy", "zip_it", function () {
return gulp.src("./build/**/*.*").pipe(zip("mod_mip_darkmode_switch_v1.0.0.zip")).pipe(gulp.dest("./build"));
return gulp.src("./build/**/*.*").pipe(zip("mod_mip_darkmode_switch_v1.1.0.zip")).pipe(gulp.dest("./build"));
}),
);

0 comments on commit bfee277

Please sign in to comment.