Skip to content

Commit

Permalink
Making improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
skosch committed May 11, 2018
0 parents commit 61db264
Show file tree
Hide file tree
Showing 31 changed files with 18,575 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
*.exe
*.obj
*.out
*.compile
*.native
*.byte
*.cmo
*.annot
*.cmi
*.cmx
*.cmt
*.cmti
*.cma
*.a
*.cmxa
*.obj
*~
*.annot
*.cmj
*.bak
lib/bs
*.mlast
*.mliast
.vscode
.merlin
bundledOutputs/
node_modules/
.bsb.lock
opt/
dist/
21 changes: 21 additions & 0 deletions bsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"name": "matcher2",
"bsc-flags": ["-bs-no-version-header", "-bs-super-errors"],
"reason": {"react-jsx" : 2},
"bs-dependencies": [
"reason-react",
"bs-fetch",
],
"sources": [
{
"dir": "src",
"subdirs": true
}
],
"package-specs": {
"module": "commonjs",
"in-source": true,
},
"suffix": ".bs.js",
"refmt": 3
}
15 changes: 15 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<script src="index.js"></script>
<title>Plank Matcher</title>
</head>
<body>
<div id="root"></div>

<script src="dist/main.js"></script>
</body>
</html>
Loading

0 comments on commit 61db264

Please sign in to comment.