Skip to content

Commit

Permalink
Implement new status page design (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonlbeggs authored Jan 15, 2024
1 parent 2ddd114 commit 93211eb
Show file tree
Hide file tree
Showing 22 changed files with 408 additions and 187 deletions.
21 changes: 15 additions & 6 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
{
"printWidth": 10000,
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"htmlWhitespaceSensitivity": "css"
"printWidth": 10000,
"semi": false,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "all",
"htmlWhitespaceSensitivity": "css",
"plugins": ["prettier-plugin-blade", "prettier-plugin-tailwindcss"],
"overrides": [
{
"files": ["*.blade.php"],
"options": {
"parser": "blade"
}
}
]
}
168 changes: 156 additions & 12 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 9 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"fix:prettier": "prettier --write resources/js/**/*.{js,vue}"
},
"devDependencies": {
"@alpinejs/anchor": "^3.13.3",
"@heroicons/vue": "^2.0.18",
"@inertiajs/vue3": "^1.0.10",
"@tailwindcss/forms": "^0.5.4",
Expand All @@ -18,10 +19,17 @@
"laravel-vite-plugin": "^0.8.0",
"postcss": "^8.4.20",
"prettier": "^3.0.1",
"prettier-plugin-tailwindcss": "^0.5.3",
"prettier-plugin-blade": "^2.0.0",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwindcss": "^3.2.4",
"vite": "^3.0.0",
"vue": "^3.3.4",
"vue-loader": "^17.0.1"
},
"dependencies": {
"@alpinejs/collapse": "^3.13.3",
"@alpinejs/focus": "^3.13.3",
"@alpinejs/ui": "^3.13.3-beta.4",
"alpinejs": "^3.13.3"
}
}
Loading

0 comments on commit 93211eb

Please sign in to comment.