Proposal to remove generated code from being versioned (#89)

* Ignore changes made to index.html by creating a sample file

* Ignore generated files

* Use the correct order for the dev deps

* Copy "index.html" when necessary

Since we won't want to version generated code.

* fixup! Ignore generated files
This commit is contained in:
thomas
2018-06-19 18:06:59 +02:00
committed by Tom MacWright
parent bd0115f70a
commit 43f7f54a78
3 changed files with 8 additions and 2 deletions

16
index.html.sample Normal file
View File

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<meta http-equiv='X-UA-Compatible' content='IE=11' />
<title>Docbox</title>
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' />
<link href='css/base.css' rel='stylesheet' />
<link href='css/style.css' rel='stylesheet' />
<link href='css/railscasts.css' rel='stylesheet' />
</head>
<body>
<!--START--><div id='app'></div><!--STOP-->
<script src='bundle.js'></script>
</body>
</html>