Skip to content

Commit 58a2590

Browse files
Update from Maestro (#262)
Co-authored-by: WendellAdriel <11641518+WendellAdriel@users.noreply.github.com>
1 parent 57e994f commit 58a2590

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+119
-180
lines changed

.github/workflows/browser-tests.yml

Lines changed: 0 additions & 70 deletions
This file was deleted.

.github/workflows/lint.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,14 @@ on:
55
branches:
66
- develop
77
- main
8+
- master
9+
- workos
810
pull_request:
911
branches:
1012
- develop
1113
- main
14+
- master
15+
- workos
1216

1317
permissions:
1418
contents: write
@@ -17,7 +21,7 @@ jobs:
1721
quality:
1822
runs-on: ubuntu-latest
1923
steps:
20-
- uses: actions/checkout@v5
24+
- uses: actions/checkout@v6
2125

2226
- name: Setup PHP
2327
uses: shivammathur/setup-php@v2

.github/workflows/tests.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,14 @@ on:
55
branches:
66
- develop
77
- main
8+
- master
9+
- workos
810
pull_request:
911
branches:
1012
- develop
1113
- main
14+
- master
15+
- workos
1216

1317
jobs:
1418
ci:
@@ -39,14 +43,14 @@ jobs:
3943
- name: Install Dependencies
4044
run: composer install --no-interaction --prefer-dist --optimize-autoloader
4145

42-
- name: Build Assets
43-
run: npm run build
44-
4546
- name: Copy Environment File
4647
run: cp .env.example .env
4748

4849
- name: Generate Application Key
4950
run: php artisan key:generate
5051

52+
- name: Build Assets
53+
run: npm run build
54+
5155
- name: Tests
5256
run: ./vendor/bin/phpunit

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
/public/build
55
/public/hot
66
/public/storage
7+
/storage/*.key
8+
/storage/pail
79
/resources/js/actions
810
/resources/js/routes
911
/resources/js/wayfinder
10-
/storage/*.key
11-
/storage/pail
1212
/vendor
1313
.DS_Store
1414
.env

.prettierrc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
"htmlWhitespaceSensitivity": "css",
66
"printWidth": 80,
77
"plugins": [
8-
"prettier-plugin-organize-imports",
98
"prettier-plugin-tailwindcss"
109
],
1110
"tailwindFunctions": [
1211
"clsx",
13-
"cn"
12+
"cn",
13+
"cva"
1414
],
1515
"tailwindStylesheet": "resources/css/app.css",
1616
"tabWidth": 4,

app/Http/Controllers/Settings/ProfileController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public function edit(Request $request): Response
2626
}
2727

2828
/**
29-
* Update the user's profile settings.
29+
* Update the user's profile information.
3030
*/
3131
public function update(ProfileUpdateRequest $request): RedirectResponse
3232
{
@@ -42,7 +42,7 @@ public function update(ProfileUpdateRequest $request): RedirectResponse
4242
}
4343

4444
/**
45-
* Delete the user's account.
45+
* Delete the user's profile.
4646
*/
4747
public function destroy(ProfileDeleteRequest $request): RedirectResponse
4848
{

database/migrations/2025_08_26_100418_add_two_factor_columns_to_users_table.php renamed to database/migrations/2025_08_14_170933_add_two_factor_columns_to_users_table.php

File renamed without changes.

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
"eslint-plugin-react": "^7.37.3",
2424
"eslint-plugin-react-hooks": "^7.0.0",
2525
"prettier": "^3.4.2",
26-
"prettier-plugin-organize-imports": "^4.1.0",
2726
"prettier-plugin-tailwindcss": "^0.6.11",
2827
"typescript-eslint": "^8.23.0"
2928
},

public/logo.svg

Lines changed: 0 additions & 16 deletions
This file was deleted.

resources/js/components/alert-error.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { Alert, AlertDescription, AlertTitle } from '@/components/ui/alert';
21
import { AlertCircleIcon } from 'lucide-react';
2+
import { Alert, AlertDescription, AlertTitle } from '@/components/ui/alert';
33

44
export default function AlertError({
55
errors,

0 commit comments

Comments
 (0)