- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
11 lines
275 B
JavaScript
11 lines
275 B
JavaScript
import createSyntax from './create.js';
|
|
import lexerConfig from './config/lexer.js';
|
|
import parserConfig from './config/parser.js';
|
|
import walkerConfig from './config/walker.js';
|
|
|
|
export default createSyntax({
|
|
...lexerConfig,
|
|
...parserConfig,
|
|
...walkerConfig
|
|
});
|