- 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
37 lines
1.0 KiB
JavaScript
37 lines
1.0 KiB
JavaScript
import tokenize from 'postcss/lib/tokenize';
|
|
/** Tokenize */
|
|
function templateTokenize(...args) {
|
|
const tokenizer = tokenize(...args);
|
|
/** nextToken */
|
|
function nextToken(...args) {
|
|
const returned = [];
|
|
let token, lastPos;
|
|
let depth = 0;
|
|
while ((token = tokenizer.nextToken(...args))) {
|
|
if (token[0] !== 'word') {
|
|
if (token[0] === '{') {
|
|
++depth;
|
|
}
|
|
else if (token[0] === '}') {
|
|
--depth;
|
|
}
|
|
}
|
|
if (depth || returned.length) {
|
|
lastPos = token[3] || token[2] || lastPos;
|
|
returned.push(token);
|
|
}
|
|
if (!depth) {
|
|
break;
|
|
}
|
|
}
|
|
if (returned.length) {
|
|
token = ['word', returned.map((token) => token[1]).join(''), returned[0][2], lastPos];
|
|
}
|
|
return token;
|
|
}
|
|
return Object.assign({}, tokenizer, {
|
|
nextToken
|
|
});
|
|
}
|
|
export default templateTokenize;
|