$
This commit is contained in:
26
node_modules/clean-css/lib/tokenizer/marker.js
generated
vendored
Normal file
26
node_modules/clean-css/lib/tokenizer/marker.js
generated
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
var Marker = {
|
||||
ASTERISK: '*',
|
||||
AT: '@',
|
||||
BACK_SLASH: '\\',
|
||||
CARRIAGE_RETURN: '\r',
|
||||
CLOSE_CURLY_BRACKET: '}',
|
||||
CLOSE_ROUND_BRACKET: ')',
|
||||
CLOSE_SQUARE_BRACKET: ']',
|
||||
COLON: ':',
|
||||
COMMA: ',',
|
||||
DOUBLE_QUOTE: '"',
|
||||
EXCLAMATION: '!',
|
||||
FORWARD_SLASH: '/',
|
||||
INTERNAL: '-clean-css-',
|
||||
NEW_LINE_NIX: '\n',
|
||||
OPEN_CURLY_BRACKET: '{',
|
||||
OPEN_ROUND_BRACKET: '(',
|
||||
OPEN_SQUARE_BRACKET: '[',
|
||||
SEMICOLON: ';',
|
||||
SINGLE_QUOTE: '\'',
|
||||
SPACE: ' ',
|
||||
TAB: '\t',
|
||||
UNDERSCORE: '_'
|
||||
};
|
||||
|
||||
module.exports = Marker;
|
17
node_modules/clean-css/lib/tokenizer/token.js
generated
vendored
Normal file
17
node_modules/clean-css/lib/tokenizer/token.js
generated
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
var Token = {
|
||||
AT_RULE: 'at-rule', // e.g. `@import`, `@charset`
|
||||
AT_RULE_BLOCK: 'at-rule-block', // e.g. `@font-face{...}`
|
||||
AT_RULE_BLOCK_SCOPE: 'at-rule-block-scope', // e.g. `@font-face`
|
||||
COMMENT: 'comment', // e.g. `/* comment */`
|
||||
NESTED_BLOCK: 'nested-block', // e.g. `@media screen{...}`, `@keyframes animation {...}`
|
||||
NESTED_BLOCK_SCOPE: 'nested-block-scope', // e.g. `@media`, `@keyframes`
|
||||
PROPERTY: 'property', // e.g. `color:red`
|
||||
PROPERTY_BLOCK: 'property-block', // e.g. `--var:{color:red}`
|
||||
PROPERTY_NAME: 'property-name', // e.g. `color`
|
||||
PROPERTY_VALUE: 'property-value', // e.g. `red`
|
||||
RAW: 'raw', // e.g. anything between /* clean-css ignore:start */ and /* clean-css ignore:end */ comments
|
||||
RULE: 'rule', // e.g `div > a{...}`
|
||||
RULE_SCOPE: 'rule-scope' // e.g `div > a`
|
||||
};
|
||||
|
||||
module.exports = Token;
|
865
node_modules/clean-css/lib/tokenizer/tokenize.js
generated
vendored
Normal file
865
node_modules/clean-css/lib/tokenizer/tokenize.js
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user