Skip to content

Commit

Permalink
Update dependencies (#5)
Browse files Browse the repository at this point in the history
* Update all dependencies
* Remove ESLint for now (it may return, but it is causing more issues than it solves at the moment)
* Add padding to radio button group
* Remove uglify and extraneous stuff from webpack
* Change from  space to tab for visual accessibility
  • Loading branch information
geeves authored May 12, 2022
1 parent 5a1667c commit 125925e
Show file tree
Hide file tree
Showing 15 changed files with 11,754 additions and 11,895 deletions.
10 changes: 2 additions & 8 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,7 @@ root = true
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
indent_style = space
indent_style = tab
charset = utf-8

# 2 space indentation
[*.{css,js,json,jsx,html,yml,yaml,less,babelrc}]
indent_size = 2

# 4 space indentation
[*.java]
indent_size = 4
tab_width = 2
4 changes: 0 additions & 4 deletions .eslintignore

This file was deleted.

283 changes: 0 additions & 283 deletions .eslintrc

This file was deleted.

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

### Generated Files
# dist/
.yarn/

### Node template
# Logs
Expand Down
1 change: 1 addition & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nodeLinker: node-modules
34 changes: 18 additions & 16 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,26 +1,28 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Camelot Wheel</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500" />
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
<script type="text/javascript" src="./dist/cw.js"></script>
<style>
footer {
display:flex;
width: 100%;
font-family: "Roboto Light";
font-size: 10px;
justify-content:center;
align-items:center;
}
</style>
<meta charset="UTF-8">
<title>Camelot Wheel</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500"/>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons"/>
<script type="text/javascript" src="./dist/cw.js"></script>
<style>
footer {
display: flex;
width: 100%;
font-family: "Roboto Light";
font-size: 10px;
justify-content: center;
align-items: center;
}
</style>
</head>
<body>
<div id="main">

</div>
<footer>please report bugs here: <a href="https://github.com/geeves/camelot-wheel">https://github.com/geeves/camelot-wheel</a></footer>
<footer>
please report bugs here: <a href="https://github.com/geeves/camelot-wheel">https://github.com/geeves/camelot-wheel</a>
</footer>
</body>
</html>
Loading

0 comments on commit 125925e

Please sign in to comment.