Skip to content

Commit

Permalink
Fix gulpfile
Browse files Browse the repository at this point in the history
  • Loading branch information
fukayatsu committed Nov 23, 2024
1 parent 665dcb4 commit 30ef356
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const paths = {
};

gulp.task("copy", function () {
return gulp.src([paths.lib, paths.js]).pipe(gulp.dest("build/"));
return gulp.src(paths.lib, { encoding: false }).pipe(gulp.dest("build/"));
});

gulp.task("download:misawa", function () {
Expand Down
2 changes: 1 addition & 1 deletion lib/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "LTTM",
"short_name": "LTTM",
"version": "0.4.1",
"version": "0.4.2",
"manifest_version": 3,
"description": "Looks Terrific To Misawa",
"icons": {
Expand Down

0 comments on commit 30ef356

Please sign in to comment.