mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 10:18:54 +00:00
This may cause conflicts with all my other PRs but it has to happen. ```[tasklist] - [ ] Update test names in branch protection (I don't think I have perms for this) ```
15 lines
312 B
Batchfile
Executable File
15 lines
312 B
Batchfile
Executable File
@echo off
|
|
setlocal enabledelayedexpansion
|
|
|
|
REM Copy frontend dependencies
|
|
copy "node_modules\flowbite\dist\flowbite.min.js" "src\"
|
|
|
|
REM Compile TypeScript
|
|
call pnpm tsc
|
|
|
|
REM Compile CSS
|
|
call pnpm tailwindcss -i src\input.css -o src\output.css
|
|
|
|
REM Compile Rust and bundle
|
|
call tauri build --debug --bundles none
|