Compare commits
3 Commits
11cb996dc8
...
800676ab23
Author | SHA1 | Date |
---|---|---|
Ray Elliott | 800676ab23 | |
Ray Elliott | 7cb52dd745 | |
Ray Elliott | 02e625e168 |
28
gulpfile.js
28
gulpfile.js
|
@ -23,6 +23,10 @@ const jsSrc = path.join(srcDir, "js/**/*.js");
|
|||
const jsDest = path.join(buildDir, "js/");
|
||||
const scssSrc = path.join(srcDir, "scss/**/*.scss");
|
||||
const cssDest = path.join(buildDir, "css/");
|
||||
const htmlSrc = path.join(srcDir, "html/**/*.html");
|
||||
const htmlDest = buildDir;
|
||||
const assetSrc = path.join(srcDir, "assets/**/*");
|
||||
const assetDest = path.join(buildDir, "assets/");
|
||||
|
||||
function jsClean() {
|
||||
return del(jsDest, { force: true });
|
||||
|
@ -32,6 +36,14 @@ function cssClean() {
|
|||
return del(cssDest, { force: true });
|
||||
}
|
||||
|
||||
function htmlClean() {
|
||||
return del(htmlDest, { force: true });
|
||||
}
|
||||
|
||||
function assetClean() {
|
||||
return del(assetDest, { force: true });
|
||||
}
|
||||
|
||||
function jsTranspile() {
|
||||
return src(jsSrc, { sourcemaps: true })
|
||||
.pipe(babel(babelConfig))
|
||||
|
@ -46,6 +58,16 @@ function scssCompile() {
|
|||
.pipe(dest(cssDest, { sourcemaps: true }));
|
||||
}
|
||||
|
||||
function htmlCompile() {
|
||||
return src(htmlSrc)
|
||||
.pipe(dest(htmlDest));
|
||||
}
|
||||
|
||||
function assetCompile() {
|
||||
return src(assetSrc)
|
||||
.pipe(dest(assetDest));
|
||||
}
|
||||
|
||||
function serve(done) {
|
||||
server.init({
|
||||
open: false,
|
||||
|
@ -67,5 +89,9 @@ const jsWatch = () =>
|
|||
watch(jsSrc, { ignoreInitial: false }, series(jsClean, jsTranspile));
|
||||
const cssWatch = () =>
|
||||
watch(scssSrc, { ignoreInitial: false }, series(cssClean, scssCompile));
|
||||
const htmlWatch = () =>
|
||||
watch(htmlSrc, { ignoreInitial: false }, series(htmlClean, htmlCompile));
|
||||
const assetWatch = () =>
|
||||
watch(assetSrc, { ignoreInitial: false }, series(assetClean, assetCompile));
|
||||
|
||||
exports.default = parallel(jsWatch, cssWatch, serve);
|
||||
exports.default = parallel(jsWatch, cssWatch, htmlWatch, assetWatch, serve);
|
||||
|
|
|
@ -0,0 +1,32 @@
|
|||
<!DOCTYPE HTML>
|
||||
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
|
||||
<title>THE TITLE IS THIS!</title>
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
|
||||
<meta name="description" content="THE DESCRIPTION IS THIS!">
|
||||
<meta name="author" content="I AM THE AUTHOR!">
|
||||
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<header>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
</footer>
|
||||
|
||||
<script src="js/script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,3 +1,15 @@
|
|||
html {
|
||||
font-size: 100%;
|
||||
html,
|
||||
body {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
font-size: 100%;
|
||||
box-sizing: border-box;
|
||||
background-color: pink;
|
||||
}
|
||||
|
||||
* {
|
||||
box-sizing: inherit;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue