suppress Octal literals are not available when targeting ECMAScript 5 and higher.

This commit is contained in:
vvakame
2015-04-29 11:15:25 +09:00
parent 7dea7494db
commit 7faade2b23
5 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -18,6 +18,6 @@ gulp.task("concat:newLine", () => {
gulp.task("concat:vinyl", () => {
gulp.src(["file*.txt"])
.pipe(concat({ path: "file.txt", stat: { mode: 0666 } }))
.pipe(concat({ path: "file.txt", stat: { mode: parseInt("0666", 8) } }))
.pipe(gulp.dest("build"));
});