Skip to content

Commit

Permalink
refactor for modular/decoupled code, new design
Browse files Browse the repository at this point in the history
Split code into multiple files for better readability
Using front-end build with Parcel
Using lit-html for UI
  • Loading branch information
anthumchris committed Dec 20, 2019
1 parent 32ee854 commit f9c9092
Show file tree
Hide file tree
Showing 23 changed files with 1,964 additions and 444 deletions.
6 changes: 6 additions & 0 deletions .babelrc
@@ -0,0 +1,6 @@
{
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-transform-runtime"
]
}
33 changes: 33 additions & 0 deletions .eslintrc.js
@@ -0,0 +1,33 @@
module.exports = {
"env": {
"browser": true,
"es6": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"react"
],
"rules": {
'semi': 2,
'no-unused-vars': 0,
'react/react-in-jsx-scope': 0,
'react/no-unknown-property': 0,
'react/prop-types': 0,
'react/display-name': 0
}
};
3 changes: 3 additions & 0 deletions .gitignore
@@ -1,2 +1,5 @@
/audio/
.DS_STORE
/dist
.cache
node_modules
113 changes: 0 additions & 113 deletions css/app.css

This file was deleted.

41 changes: 0 additions & 41 deletions index.html

This file was deleted.

0 comments on commit f9c9092

Please sign in to comment.