Skip to content

Commit 6e949b7

Browse files
committed
remove gulp-util deprecated
1 parent b35c926 commit 6e949b7

File tree

3 files changed

+115
-341
lines changed

3 files changed

+115
-341
lines changed

gulpfile.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11

22
const zip = require("gulp-zip");
33
const gulp = require("gulp");
4-
const gutil = require("gulp-util");
54
const chalk = require("chalk");
65

76
gulp.task("default", function() {
8-
gutil.log(chalk.yellow("Make sure binaries have execute permission before packaging."));
9-
gutil.log(chalk.yellow("This should be run from a Linux shell so that permissions are properly copied into the package."));
7+
console.log(chalk.yellow("Make sure binaries have execute permission before packaging."));
8+
console.log(chalk.yellow("This should be run from a Linux shell so that permissions are properly copied into the package."));
109

1110
return gulp.src(["*.js", "package.json", "package-lock.json", "bin/*"], {base: "."})
1211
.pipe(zip("package.zip"))

0 commit comments

Comments
 (0)