- Delete old Vite+Svelte frontend - Initialize new SvelteKit project with TypeScript - Configure Tailwind CSS v4 + DaisyUI - Implement JWT authentication with auto-refresh - Create login page with form validation (Zod) - Add protected route guards - Update Docker configuration for single-stage build - Add E2E tests with Playwright (6/11 passing) - Fix Svelte 5 reactivity with $state() runes Known issues: - 5 E2E tests failing (timing/async issues) - Token refresh implementation needs debugging - Validation error display timing
19 lines
441 B
JavaScript
19 lines
441 B
JavaScript
#!/usr/bin/env node
|
|
|
|
var spawn = require('child_process').spawn
|
|
var path = require('path')
|
|
|
|
var prog = path.resolve(process.argv[2])
|
|
var progArgs = process.argv.slice(3)
|
|
|
|
console.log('probing program', prog)
|
|
|
|
var nodeArgs = [
|
|
'-r',
|
|
path.join(__dirname, 'include.js')
|
|
]
|
|
var nodeOpts = { stdio: 'inherit' }
|
|
var child = spawn('node', nodeArgs.concat(prog).concat(progArgs), nodeOpts)
|
|
|
|
console.log('kill -SIGUSR1', child.pid, 'for logging')
|