- 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
657 B
JavaScript
19 lines
657 B
JavaScript
var baseConvert = require('./_baseConvert'),
|
|
util = require('./_util');
|
|
|
|
/**
|
|
* Converts `func` of `name` to an immutable auto-curried iteratee-first data-last
|
|
* version with conversion `options` applied. If `name` is an object its methods
|
|
* will be converted.
|
|
*
|
|
* @param {string} name The name of the function to wrap.
|
|
* @param {Function} [func] The function to wrap.
|
|
* @param {Object} [options] The options object. See `baseConvert` for more details.
|
|
* @returns {Function|Object} Returns the converted function or object.
|
|
*/
|
|
function convert(name, func, options) {
|
|
return baseConvert(util, name, func, options);
|
|
}
|
|
|
|
module.exports = convert;
|