diff --git a/app/CNAME b/app/CNAME new file mode 100644 index 0000000..e69de29 diff --git a/app/humans.txt b/app/humans.txt new file mode 100644 index 0000000..0481f94 --- /dev/null +++ b/app/humans.txt @@ -0,0 +1,14 @@ +# humanstxt.org/ +# The humans responsible & technology colophon + +# TEAM + + -- -- + +# THANKS + + + +# TECHNOLOGY COLOPHON + + HTML5, CSS3 diff --git a/app/manifest.json b/app/manifest.json new file mode 100644 index 0000000..1bc9347 --- /dev/null +++ b/app/manifest.json @@ -0,0 +1,24 @@ +{ + "name": "Sassqit", + "icons": [{ + "src": "./assets/favicons/touch/icon-128x128.png", + "sizes": "128x128", + "type": "image/png" + }, { + "src": "./assets/favicons/touch/apple-touch-icon.png", + "sizes": "152x152", + "type": "image/png" + }, { + "src": "./assets/favicons/touch/ms-touch-icon-144x144-precomposed.png", + "sizes": "144x144", + "type": "image/png" + }, { + "src": "./assets/favicons/touch/chrome-touch-icon-192x192.png", + "sizes": "192x192", + "type": "image/png" + }], + "start_url": "/index.html?homescreen=1", + "display": "standalone", + "background_color": "", + "theme_color": "" +} \ No newline at end of file diff --git a/app/manifest.webapp b/app/manifest.webapp new file mode 100644 index 0000000..f678893 --- /dev/null +++ b/app/manifest.webapp @@ -0,0 +1,25 @@ +{ + "version": "1.0.0", + "name": "Sassqit", + "launch_path": "/index.html", + "description": "Build and Deploy Static websites like a bauss", + "icons": { + "128": "assets/images/favicons/touch/icon-128x128.png" + }, + "developer": { + "name": "Whitesmith", + "url": "https://whitesmith.co" + }, + "installs_allowed_from": [ + "*" + ], + "default_locale": "en", + "permissions": { + }, + "locales": { + "en": { + "name": "Sassqit", + "description": "Build and Deploy Static websites like a bauss" + } + } +} \ No newline at end of file diff --git a/app/robots.txt b/app/robots.txt new file mode 100644 index 0000000..d0e5f1b --- /dev/null +++ b/app/robots.txt @@ -0,0 +1,5 @@ +# www.robotstxt.org/ + +# Allow crawling of all content +User-agent: * +Disallow: diff --git a/gulpfile.babel.js b/gulpfile.babel.js index 6500d67..2b42d72 100644 --- a/gulpfile.babel.js +++ b/gulpfile.babel.js @@ -62,6 +62,11 @@ export { clean } // done() // } +/*Copy Common App RootFiles */ +export function copyRootFiles() { + return gulp.src(paths.appRoot.src + '/*.*', {since: gulp.lastRun('copyRootFiles'), dot: true}) + .pipe(gulp.dest(paths.appRoot.dest)); +} /* * Copy & Optimize static assets @@ -235,6 +240,7 @@ const serve = gulp.series( */ const deploy = gulp.series( build, + copyRootFiles, function(){ return gulp.src(appRoot.dest) .pipe(ghPages());