aboutsummaryrefslogtreecommitdiffstats
path: root/vanilla/node_modules/css-tree/lib/syntax/index.js
blob: c8c9152e10a99baf7b87eb2312f25522ab444b2a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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
});