aboutsummaryrefslogtreecommitdiffstats
path: root/vanilla/node_modules/css-tree/cjs/syntax/index.cjs
blob: 24de4957a3cbfb890d7b0217422c83d9a8a9a318 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
'use strict';

const create = require('./create.cjs');
const lexer = require('./config/lexer.cjs');
const parser = require('./config/parser.cjs');
const walker = require('./config/walker.cjs');

const syntax = create({
    ...lexer,
    ...parser,
    ...walker
});

module.exports = syntax;