Skip to content

Commit

Permalink
Merge pull request #17 from malchata/shadowfax
Browse files Browse the repository at this point in the history
Merge version 2 (shadowfax) into master.
  • Loading branch information
malchata authored Apr 15, 2018
2 parents c7d9a58 + 22ef3c4 commit 39667da
Show file tree
Hide file tree
Showing 29 changed files with 3,539 additions and 554 deletions.
10 changes: 10 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"presets": [
["env", {
"targets": {
"browsers": ["last 2 versions", "safari >= 7"]
}
}]
],
"plugins": ["transform-object-assign"]
}
4 changes: 2 additions & 2 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
root = true

[*]
indent_style = tab
indent_style = space
end_of_line = lf
indent_size = 4
indent_size = 2
charset = utf-8
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
.DS_Store
node_modules
node_modules
Thumbs.db
4 changes: 2 additions & 2 deletions LICENSE-MIT
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) Jeremy Wagner <[email protected]> (https://jeremywagner.me)
Copyright (c) Jeremy Wagner <[email protected]> (https://jeremywagner.me/)

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
Expand All @@ -19,4 +19,4 @@ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
OTHER DEALINGS IN THE SOFTWARE.
151 changes: 99 additions & 52 deletions README.md

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion dist/yall-1.2.0.min.js

This file was deleted.

1 change: 1 addition & 0 deletions dist/yall-2.0.0.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions http.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
const path = require("path");
const express = require("express");
const app = express();
const htdocs = path.join(__dirname, "test");

// Run static server
app.use(express.static(htdocs));
app.listen(8080);

console.log("Lazy loading tests up and running at http://localhost:8080/");
console.log("Press Ctrl+C to quit.");
Loading

0 comments on commit 39667da

Please sign in to comment.