aboutsummaryrefslogtreecommitdiffstats
path: root/vanilla/node_modules/css-tree/cjs/syntax/config/parser-selector.cjs
diff options
context:
space:
mode:
Diffstat (limited to 'vanilla/node_modules/css-tree/cjs/syntax/config/parser-selector.cjs')
-rw-r--r--vanilla/node_modules/css-tree/cjs/syntax/config/parser-selector.cjs19
1 files changed, 0 insertions, 19 deletions
diff --git a/vanilla/node_modules/css-tree/cjs/syntax/config/parser-selector.cjs b/vanilla/node_modules/css-tree/cjs/syntax/config/parser-selector.cjs
deleted file mode 100644
index 03b1683..0000000
--- a/vanilla/node_modules/css-tree/cjs/syntax/config/parser-selector.cjs
+++ /dev/null
@@ -1,19 +0,0 @@
-'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;