Skip to content

Commit 0ef87df

Browse files
committed
adding orginization for search engines
1 parent b359601 commit 0ef87df

File tree

6 files changed

+1521
-136
lines changed

6 files changed

+1521
-136
lines changed

dist/functionalty.min.js

Lines changed: 1 addition & 43 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

functionalty.zip

0 Bytes
Binary file not shown.

gulpfile.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,11 @@ gulp.task("scripts", () => {
4343
"./project/js/**/*.js",
4444
"!./project/js/functionalty.js",
4545
])
46+
.pipe(
47+
babel({
48+
presets: ["@babel/env"],
49+
})
50+
)
4651
.pipe(uglify())
4752
.pipe(concat("main.js"))
4853
.pipe(gulp.dest("./website/js"))
@@ -55,6 +60,11 @@ gulp.task("functionalty", () => {
5560
require("./server.js");
5661
return gulp
5762
.src("./project/js/functionalty.js")
63+
.pipe(
64+
babel({
65+
presets: ["@babel/env"],
66+
})
67+
)
5868
.pipe(uglify())
5969
.pipe(rename("functionalty.min.js"))
6070
.pipe(gulp.dest("./dist"));

0 commit comments

Comments
 (0)