Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: add type checking to build script #31

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ jobs:
node-version: '22'
cache: 'npm'

- name: Install Composer Dependencies
run: |
composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist

- name: Install Node Dependencies
run: npm ci

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"private": true,
"type": "module",
"scripts": {
"build": "vite build",
"build": "tsc && vite build",
"build:ssr": "vite build && vite build --ssr",
"dev": "vite",
"format": "prettier --write resources/",
Expand Down
4 changes: 2 additions & 2 deletions resources/js/pages/auth/login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ import { Input } from '@/components/ui/input';
import { Label } from '@/components/ui/label';
import AuthLayout from '@/layouts/auth-layout';

interface LoginForm {
type LoginForm = {
email: string;
password: string;
remember: boolean;
}
};

interface LoginProps {
status?: string;
Expand Down
4 changes: 2 additions & 2 deletions resources/js/pages/auth/register.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ import { Input } from '@/components/ui/input';
import { Label } from '@/components/ui/label';
import AuthLayout from '@/layouts/auth-layout';

interface RegisterForm {
type RegisterForm = {
name: string;
email: string;
password: string;
password_confirmation: string;
}
};

export default function Register() {
const { data, setData, post, processing, errors, reset } = useForm<RegisterForm>({
Expand Down
4 changes: 2 additions & 2 deletions resources/js/pages/auth/reset-password.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ interface ResetPasswordProps {
email: string;
}

interface ResetPasswordForm {
type ResetPasswordForm = {
token: string;
email: string;
password: string;
password_confirmation: string;
}
};

export default function ResetPassword({ token, email }: ResetPasswordProps) {
const { data, setData, post, processing, errors, reset } = useForm<ResetPasswordForm>({
Expand Down
3 changes: 2 additions & 1 deletion resources/js/pages/welcome.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { type SharedData } from '@/types';
import { Head, Link, usePage } from '@inertiajs/react';
import { Property } from 'csstype';

export default function Welcome() {
const { auth } = usePage<SharedData>().props;
Expand Down Expand Up @@ -218,7 +219,7 @@ export default function Welcome() {
/>
</g>
<g
style={{ mixBlendMode: 'plus-darker' }}
style={{ mixBlendMode: 'plus-darker' as Property.MixBlendMode }}
className="translate-y-0 opacity-100 transition-all delay-300 duration-750 starting:translate-y-4 starting:opacity-0"
>
<path
Expand Down