mirror of
https://gh.wpcy.net/https://github.com/djav1985/v-wordpress-plugin-updater.git
synced 2026-05-02 11:22:19 +08:00
14 lines
318 B
JavaScript
14 lines
318 B
JavaScript
'use strict';
|
|
|
|
const genericConst = require('../../lexer/generic-const.cjs');
|
|
const data = require('../../data.cjs');
|
|
const index = require('../node/index.cjs');
|
|
|
|
const lexerConfig = {
|
|
generic: true,
|
|
cssWideKeywords: genericConst.cssWideKeywords,
|
|
...data,
|
|
node: index
|
|
};
|
|
|
|
module.exports = lexerConfig;
|