Document application modes (development/debug/production) Add global file drop handler, order column normalization, SPA hash fix Serve CDN assets via /_vendor/ URLs instead of merging into bundles Add production minification with license preservation Improve JSON formatting for debugging and production optimization Add CDN asset caching with CSS URL inlining for production builds Add three-mode system (development, debug, production) Update Manifest CLAUDE.md to reflect helper class architecture Refactor Manifest.php into helper classes for better organization Pre-manifest-refactor checkpoint: Add app_mode documentation 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
18 lines
963 B
JavaScript
18 lines
963 B
JavaScript
export { parse as AnPlusB } from './AnPlusB.js';
|
|
export { parse as AttributeSelector } from './AttributeSelector.js';
|
|
export { parse as ClassSelector } from './ClassSelector.js';
|
|
export { parse as Combinator } from './Combinator.js';
|
|
export { parse as Identifier } from './Identifier.js';
|
|
export { parse as IdSelector } from './IdSelector.js';
|
|
export { parse as NestingSelector } from './NestingSelector.js';
|
|
export { parse as Nth } from './Nth.js';
|
|
export { parse as Operator } from './Operator.js';
|
|
export { parse as Percentage } from './Percentage.js';
|
|
export { parse as PseudoClassSelector } from './PseudoClassSelector.js';
|
|
export { parse as PseudoElementSelector } from './PseudoElementSelector.js';
|
|
export { parse as Raw } from './Raw.js';
|
|
export { parse as Selector } from './Selector.js';
|
|
export { parse as SelectorList } from './SelectorList.js';
|
|
export { parse as String } from './String.js';
|
|
export { parse as TypeSelector } from './TypeSelector.js';
|