mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
suppress Octal literals are not available when targeting ECMAScript 5 and higher.
This commit is contained in:
@@ -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"));
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user