-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Many fixes to drawing to better support responsive layout
- refactor drawing to account for layouts and drawing different things ( new hooks that wrap drawing, so drawing can be done from components ) - new elements for labels (new game, switch, score & version) - a couple redux bugs / fixes... direction is now static for each type - responsive viewport / no more css! - update dependencies
- Loading branch information
Showing
25 changed files
with
1,761 additions
and
4,629 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,43 +8,33 @@ | |
"_build": "webpack", | ||
"build": "npm run _build -- --mode=production", | ||
"format": "prettier --write **/*.*", | ||
"lint": "npm run lint:ts && npm run lint:sass", | ||
"lint:ts": "eslint .", | ||
"lint:sass": "stylelint \"src/styles/*.scss\"", | ||
"lint": "eslint .", | ||
"start": "webpack-dev-server --mode=development --hot" | ||
}, | ||
"author": "Tyler Waters <[email protected]>", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@teamsupercell/typings-for-css-modules-loader": "^2.1.0", | ||
"@typescript-eslint/eslint-plugin": "^3.0.2", | ||
"@typescript-eslint/parser": "^3.0.2", | ||
"@typescript-eslint/eslint-plugin": "^3.6.1", | ||
"@typescript-eslint/parser": "^3.6.1", | ||
"awesome-typescript-loader": "^5.2.1", | ||
"circular-dependency-plugin": "^5.2.0", | ||
"css-loader": "^3.4.0", | ||
"eslint": "^7.1.0", | ||
"eslint": "^7.4.0", | ||
"eslint-config-prettier": "^6.7.0", | ||
"eslint-plugin-react": "^7.17.0", | ||
"eslint-plugin-react-hooks": "^4.0.4", | ||
"eslint-plugin-react": "^7.20.3", | ||
"eslint-plugin-react-hooks": "^4.0.8", | ||
"html-webpack-plugin": "^4.3.0", | ||
"mini-css-extract-plugin": "^0.9.0", | ||
"offline-plugin": "^5.0.7", | ||
"optimize-css-assets-webpack-plugin": "^5.0.3", | ||
"prettier": "^2.0.5", | ||
"style-loader": "^1.1.1", | ||
"stylelint": "^13.5.0", | ||
"stylelint-config-sass-guidelines": "^7.0.0", | ||
"stylelint-config-standard": "^20.0.0", | ||
"stylelint-scss": "^3.13.0", | ||
"terser-webpack-plugin": "^3.0.2", | ||
"typescript": "^3.7.4", | ||
"terser-webpack-plugin": "^3.0.7", | ||
"typescript": "^3.9.7", | ||
"webpack": "^4.43.0", | ||
"webpack-cli": "^3.3.10" | ||
}, | ||
"dependencies": { | ||
"@types/classnames": "^2.2.9", | ||
"@types/node": "^14.0.6", | ||
"@types/react": "^16.9.17", | ||
"@types/node": "^14.0.23", | ||
"@types/react": "^16.9.43", | ||
"@types/react-dom": "^16.9.4", | ||
"@types/react-redux": "^7.1.5", | ||
"@types/redux-logger": "^3.0.7", | ||
|
@@ -70,6 +60,11 @@ | |
"extends": [ | ||
"eslint:recommended" | ||
], | ||
"settings": { | ||
"react": { | ||
"version": "detect" | ||
} | ||
}, | ||
"env": { | ||
"es6": true, | ||
"browser": true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.