Skip to content

Commit

Permalink
Merge pull request #48 from Sir-Thom/Dev
Browse files Browse the repository at this point in the history
bug fixes for setting not able to keep change setting, added ts type, remove console log
  • Loading branch information
Sir-Thom authored Jan 5, 2024
2 parents 442e1ec + 8b1fe00 commit 9acb1cf
Show file tree
Hide file tree
Showing 36 changed files with 548 additions and 699 deletions.
3 changes: 3 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,14 @@
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"prettier" ],
"ignorePatterns": ["**/tests/*.test.*"],
"rules": {
"no-unused-vars":1,
"@typescript-eslint/no-unused-vars": 1,
"@typescript-eslint/no-explicit-any": 1,
"no-console": 1, // Means warning
"prettier/prettier": 0 // Means error }
}


}
15 changes: 9 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "magic-eye",
"description": "A magic eye app",
"version": "0.9.1",
"version": "0.9.2",
"type": "module",
"scripts": {
"check-format": "prettier . --check",
Expand All @@ -19,13 +19,16 @@
"dependencies": {
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.1.1",
"@tabler/icons-react": "^2.44.0",
"@tabler/icons-react": "^2.45.0",
"@tailwindcss/forms": "^0.5.7",
"@tauri-apps/api": "^2.0.0-alpha",
"@tauri-apps/plugin-app": "^2.0.0-alpha",
"@tauri-apps/plugin-dialog": "^2.0.0-alpha.5",
"@tauri-apps/plugin-window": "^2.0.0-alpha",
"framer-motion": "^10.16.16",
"hls-video-element": "^1.1.1",
"hls.js": "^1.4.14",
"media-chrome": "^2.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.12.0",
Expand All @@ -42,20 +45,20 @@
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.15.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.1.0",
"@vitest/ui": "^1.1.0",
"@vitest/ui": "^1.1.3",
"@vitest/coverage-v8": "^1.1.3",
"autoprefixer": "^10.4.16",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"jsdom": "^23.0.1",
"jsdom": "^23.1.0",
"json-loader": "^0.5.7",
"postcss": "^8.4.32",
"prettier": "^3.1.1",
"tailwind-scrollbar": "^3.0.5",
"tailwindcss": "^3.4.0",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vitest": "^1.1.0"
"vitest": "^1.1.3"
}
}
Loading

0 comments on commit 9acb1cf

Please sign in to comment.