Added vendor directory & gulp support for better dependency organization + compiling less & js files. added gulp

support for a browser sync task as well for easier development
This commit is contained in:
billz
2018-03-09 02:03:53 +00:00
parent 659e21f00b
commit 902281294f
10728 changed files with 1157694 additions and 108542 deletions

15
node_modules/browser-sync/templates/cli-template.js generated vendored Normal file
View File

@@ -0,0 +1,15 @@
/*
|--------------------------------------------------------------------------
| Browser-sync config file
|--------------------------------------------------------------------------
|
| For up-to-date information about the options:
| http://www.browsersync.io/docs/options/
|
| There are more options than you see here, these are just the ones that are
| set internally. See the website for more info.
|
|
*/
module.exports = //OPTS;

6
node_modules/browser-sync/templates/connector.tmpl generated vendored Normal file
View File

@@ -0,0 +1,6 @@
window.___browserSync___ = {};
___browserSync___.socketConfig = %config%;
___browserSync___.socketUrl = %url%;
if (location.protocol == "https:" && /^http:/.test(___browserSync___.socketUrl)) {
___browserSync___.socketUrl = ___browserSync___.socketUrl.replace(/^http:/, "https:");
}

View File

@@ -0,0 +1 @@
<script %async% id="__bs_script__" src="%script%"></script>

3
node_modules/browser-sync/templates/script-tags.tmpl generated vendored Normal file
View File

@@ -0,0 +1,3 @@
<script id="__bs_script__">//<![CDATA[
document.write("<script %async% src='%script%'><\/script>".replace("HOST", location.hostname));
//]]></script>