Skip to content

Commit 39667da

Browse files
authored
Merge pull request #17 from malchata/shadowfax
Merge version 2 (shadowfax) into master.
2 parents c7d9a58 + 22ef3c4 commit 39667da

29 files changed

+3539
-554
lines changed

.babelrc

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"presets": [
3+
["env", {
4+
"targets": {
5+
"browsers": ["last 2 versions", "safari >= 7"]
6+
}
7+
}]
8+
],
9+
"plugins": ["transform-object-assign"]
10+
}

.editorconfig

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
root = true
55

66
[*]
7-
indent_style = tab
7+
indent_style = space
88
end_of_line = lf
9-
indent_size = 4
9+
indent_size = 2
1010
charset = utf-8

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
.DS_Store
2-
node_modules
2+
node_modules
3+
Thumbs.db

LICENSE-MIT

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) Jeremy Wagner <jeremy.l.wagner@gmail.com> (https://jeremywagner.me)
1+
Copyright (c) Jeremy Wagner <jeremy.l.wagner@gmail.com> (https://jeremywagner.me/)
22

33
Permission is hereby granted, free of charge, to any person
44
obtaining a copy of this software and associated documentation
@@ -19,4 +19,4 @@ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1919
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
2020
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
2121
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22-
OTHER DEALINGS IN THE SOFTWARE.
22+
OTHER DEALINGS IN THE SOFTWARE.

README.md

+99-52
Large diffs are not rendered by default.

dist/yall-1.2.0.min.js

-1
This file was deleted.

dist/yall-2.0.0.min.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

http.js

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
const path = require("path");
2+
const express = require("express");
3+
const app = express();
4+
const htdocs = path.join(__dirname, "test");
5+
6+
// Run static server
7+
app.use(express.static(htdocs));
8+
app.listen(8080);
9+
10+
console.log("Lazy loading tests up and running at http://localhost:8080/");
11+
console.log("Press Ctrl+C to quit.");

0 commit comments

Comments
 (0)