ducky/web
3:7ae5dd64c482 Browse Files
Stop ignoring our build folder. Now that our HTML lives in our build folder, we should probably stop ignoring it. This means that an `hg clone` followed by an `npm install` followed by an `npm run deploy` will work. I hope.
.hgignore build/200.html build/CNAME
1.1 --- a/.hgignore Fri May 29 00:30:16 2015 -0400 1.2 +++ b/.hgignore Fri May 29 00:36:32 2015 -0400 1.3 @@ -1,5 +1,5 @@ 1.4 syntax: glob 1.5 1.6 -build/ 1.7 +build/static 1.8 node_modules/ 1.9 *.swp
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/build/200.html Fri May 29 00:36:32 2015 -0400 2.3 @@ -0,0 +1,11 @@ 2.4 +<!DOCTYPE html> 2.5 +<html> 2.6 +<head> 2.7 + <meta charset="utf-8"> 2.8 + <link rel="stylesheet" href="/static/main.css" /> 2.9 +</head> 2.10 +<body> 2.11 +</body> 2.12 +<script src="/static/common.js"></script> 2.13 +<script src="/static/bundle.js"></script> 2.14 +</html>