- Timestamp:
- 11/25/21 22:08:24 (3 years ago)
- Branches:
- master
- Children:
- 8d391a1
- Parents:
- 59329aa
- Location:
- trip-planner-front/node_modules/postcss-merge-longhand
- Files:
-
- 1 added
- 1 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/node_modules/postcss-merge-longhand/dist/lib/canMerge.js
r59329aa re29cc2e 13 13 14 14 const unimportant = node => !node.important; 15 /* Cannot be combined with other values in shorthand 16 https://www.w3.org/TR/css-cascade-5/#shorthand */ 15 17 16 const hasInherit = node => node.value.toLowerCase() === 'inherit';17 18 18 const hasInitial = node => node.value.toLowerCase() === 'initial'; 19 20 const hasUnset = node => node.value.toLowerCase() === 'unset'; 19 const cssWideKeywords = ['inherit', 'initial', 'unset', 'revert']; 21 20 22 21 var _default = (props, includeCustomProps = true) => { 23 if (props.some(hasInherit) && !props.every(hasInherit)) { 24 return false; 25 } 22 const uniqueProps = new Set(props.map(node => node.value.toLowerCase())); 26 23 27 if ( props.some(hasInitial) && !props.every(hasInitial)) {28 return false;29 }30 31 if (props.some(hasUnset) && !props.every(hasUnset)) {32 return false;24 if (uniqueProps.size > 1) { 25 for (const unmergeable of cssWideKeywords) { 26 if (uniqueProps.has(unmergeable)) { 27 return false; 28 } 29 } 33 30 } 34 31 -
trip-planner-front/node_modules/postcss-merge-longhand/dist/lib/decl/borders.js
r59329aa re29cc2e 113 113 const diff = diffingProps(values, nextValues); 114 114 115 if (diff.length >1) {115 if (diff.length !== 1) { 116 116 return; 117 117 } -
trip-planner-front/node_modules/postcss-merge-longhand/dist/lib/validateWsc.js
r59329aa re29cc2e 9 9 exports.isValidWsc = isValidWsc; 10 10 11 var _c ssColorNames = _interopRequireDefault(require("css-color-names"));11 var _colornames = _interopRequireDefault(require("./colornames.js")); 12 12 13 13 function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } … … 15 15 const widths = ['thin', 'medium', 'thick']; 16 16 const styles = ['none', 'hidden', 'dotted', 'dashed', 'solid', 'double', 'groove', 'ridge', 'inset', 'outset']; 17 const colors = Object.keys(_cssColorNames.default);18 17 19 18 function isStyle(value) { … … 52 51 } 53 52 54 return !!~ colors.indexOf(value);53 return !!~_colornames.default.indexOf(value); 55 54 } 56 55 -
trip-planner-front/node_modules/postcss-merge-longhand/package.json
r59329aa re29cc2e 1 1 { 2 "_args": [ 3 [ 4 "postcss-merge-longhand@5.0.2", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "postcss-merge-longhand@5.0.2", 10 "_id": "postcss-merge-longhand@5.0.2", 2 "_from": "postcss-merge-longhand@^5.0.4", 3 "_id": "postcss-merge-longhand@5.0.4", 11 4 "_inBundle": false, 12 "_integrity": "sha512- BMlg9AXSI5G9TBT0Lo/H3PfUy63P84rVz3BjCFE9e9Y9RXQZD3+h3YO1kgTNsNJy7bBc1YQp8DmSnwLIW5VPcw==",5 "_integrity": "sha512-2lZrOVD+d81aoYkZDpWu6+3dTAAGkCKbV5DoRhnIR7KOULVrI/R7bcMjhrH9KTRy6iiHKqmtG+n/MMj1WmqHFw==", 13 6 "_location": "/postcss-merge-longhand", 14 7 "_phantomChildren": {}, 15 8 "_requested": { 16 "type": " version",9 "type": "range", 17 10 "registry": true, 18 "raw": "postcss-merge-longhand@ 5.0.2",11 "raw": "postcss-merge-longhand@^5.0.4", 19 12 "name": "postcss-merge-longhand", 20 13 "escapedName": "postcss-merge-longhand", 21 "rawSpec": " 5.0.2",14 "rawSpec": "^5.0.4", 22 15 "saveSpec": null, 23 "fetchSpec": " 5.0.2"16 "fetchSpec": "^5.0.4" 24 17 }, 25 18 "_requiredBy": [ 26 19 "/cssnano-preset-default" 27 20 ], 28 "_resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.0.2.tgz", 29 "_spec": "5.0.2", 30 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 21 "_resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.0.4.tgz", 22 "_shasum": "41f4f3270282ea1a145ece078b7679f0cef21c32", 23 "_spec": "postcss-merge-longhand@^5.0.4", 24 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front\\node_modules\\cssnano-preset-default", 31 25 "author": { 32 26 "name": "Ben Briggs", … … 37 31 "url": "https://github.com/cssnano/cssnano/issues" 38 32 }, 33 "bundleDependencies": false, 39 34 "dependencies": { 40 "css-color-names": "^1.0.1",41 35 "postcss-value-parser": "^4.1.0", 42 36 "stylehacks": "^5.0.1" 43 37 }, 38 "deprecated": false, 44 39 "description": "Merge longhand properties into shorthand with PostCSS.", 45 40 "devDependencies": { … … 53 48 "dist" 54 49 ], 55 "gitHead": "28c247175032fa03f04911cde56ad82d74d211cc",56 50 "homepage": "https://github.com/cssnano/cssnano", 57 51 "keywords": [ … … 74 68 "scripts": { 75 69 "build": "cross-env BABEL_ENV=publish babel src --config-file ../../babel.config.json --out-dir dist --ignore \"**/__tests__/\"", 76 "prebuild": " del-clidist",77 "prep ublish": "yarn build"70 "prebuild": "rimraf dist", 71 "prepare": "yarn build" 78 72 }, 79 "version": "5.0. 2"73 "version": "5.0.4" 80 74 }
Note:
See TracChangeset
for help on using the changeset viewer.