mirror of
https://gh.wpcy.net/https://github.com/djav1985/v-wordpress-plugin-updater.git
synced 2026-05-01 11:12:18 +08:00
19 lines
457 B
JavaScript
19 lines
457 B
JavaScript
'use strict';
|
|
|
|
const index = require('../pseudo/index.cjs');
|
|
const indexParseSelector = require('../node/index-parse-selector.cjs');
|
|
const selector = require('../scope/selector.cjs');
|
|
|
|
const config = {
|
|
parseContext: {
|
|
default: 'SelectorList',
|
|
selectorList: 'SelectorList',
|
|
selector: 'Selector'
|
|
},
|
|
scope: { Selector: selector },
|
|
atrule: {},
|
|
pseudo: index,
|
|
node: indexParseSelector
|
|
};
|
|
|
|
module.exports = config;
|