Vanha frontend siirretty temp/. Uusi rakenne: - StatusBar.astro, Terminal.astro, Editor.astro, Guide.astro - global.css erillinen - Wasm pääsäikeessä (ei Worker — yksinkertainen, debugattava) - Tab-completion, dropdown, projektikortti, Monaco, GUIDE.md - Ei tokenisointia eikä koodilaboratoriota Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
14 lines
288 B
JavaScript
14 lines
288 B
JavaScript
'use strict';
|
|
|
|
const cssTree = require('css-tree');
|
|
const keyframes = require('./atrule/keyframes.cjs');
|
|
|
|
function Atrule(node) {
|
|
// compress @keyframe selectors
|
|
if (cssTree.keyword(node.name).basename === 'keyframes') {
|
|
keyframes(node);
|
|
}
|
|
}
|
|
|
|
module.exports = Atrule;
|