Compare commits
2 Commits
addd3d29de
...
95519a4718
Author | SHA1 | Date |
---|---|---|
Sid Alapati | 95519a4718 | |
Sid Alapati | b67613c721 |
|
@ -0,0 +1,3 @@
|
|||
node_modules
|
||||
dist
|
||||
build
|
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"tabWidth": 2,
|
||||
"filepath": "*.{js, html}"
|
||||
}
|
18
gulpfile.js
18
gulpfile.js
|
@ -42,6 +42,14 @@ gulp.task("images", function () {
|
|||
.pipe(connect.reload());
|
||||
});
|
||||
|
||||
// Fonts
|
||||
gulp.task("fonts", function () {
|
||||
return gulp
|
||||
.src(["./fonts/**"], { removeBOM: false })
|
||||
.pipe(gulp.dest("./dist/fonts"))
|
||||
.pipe(connect.reload());
|
||||
});
|
||||
|
||||
gulp.task("html", function () {
|
||||
return gulp
|
||||
.src("./index.html")
|
||||
|
@ -65,10 +73,13 @@ gulp.task("html", function () {
|
|||
// Clean
|
||||
gulp.task("clean", function () {
|
||||
return gulp
|
||||
.src(["dist/css", "dist/js", "dist/images", "dist/index.html"], {
|
||||
.src(
|
||||
["dist/css", "dist/js", "dist/images", "dist/index.html", "dist/fonts"],
|
||||
{
|
||||
read: false,
|
||||
allowEmpty: true,
|
||||
})
|
||||
}
|
||||
)
|
||||
.pipe(clean());
|
||||
});
|
||||
|
||||
|
@ -76,7 +87,7 @@ gulp.task("clean", function () {
|
|||
gulp.task(
|
||||
"default",
|
||||
gulp.series("clean", async function minifyAll() {
|
||||
return gulp.parallel("styles", "scripts", "images", "html")();
|
||||
return gulp.parallel("styles", "scripts", "images", "html", "fonts")();
|
||||
})
|
||||
);
|
||||
|
||||
|
@ -96,6 +107,7 @@ gulp.task("watch", function () {
|
|||
gulp.watch("./js/*.js", gulp.series("scripts"));
|
||||
gulp.watch("./images/**/*", gulp.series("images"));
|
||||
gulp.watch("./index.html", gulp.series("html"));
|
||||
gulp.watch("./fonts/**/*", gulp.series("fonts"));
|
||||
});
|
||||
|
||||
gulp.task("dev", gulp.series("default", gulp.parallel("connect", "watch")));
|
||||
|
|
14
index.html
14
index.html
|
@ -300,12 +300,7 @@
|
|||
</div>
|
||||
<div class="col-xl-6 col-lg-6">
|
||||
<div class="text-center text-lg-left">
|
||||
<img
|
||||
src="images/blur-landing-corporate-03-500x406.png"
|
||||
alt=""
|
||||
width="500"
|
||||
height="406"
|
||||
/>
|
||||
<img src="images/" alt="" width="500" height="406" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -818,12 +813,7 @@
|
|||
</div>
|
||||
<div class="col-xl-7 col-lg-6">
|
||||
<div class="text-right">
|
||||
<img
|
||||
src="images/landing-corporate-25-660x406.jpg"
|
||||
alt=""
|
||||
width="660"
|
||||
height="406"
|
||||
/>
|
||||
<img src="images/" alt="" width="660" height="406" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue