Changeset e29cc2e for trip-planner-front/node_modules/css
- Timestamp:
- 11/25/21 22:08:24 (3 years ago)
- Branches:
- master
- Children:
- 8d391a1
- Parents:
- 59329aa
- Location:
- trip-planner-front/node_modules/css
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/node_modules/css/lib/stringify/source-map-support.js
r59329aa re29cc2e 7 7 var SourceMapConsumer = require('source-map').SourceMapConsumer; 8 8 var sourceMapResolve = require('source-map-resolve'); 9 var urix = require('urix'); 9 10 var fs = require('fs'); 10 11 var path = require('path'); … … 15 16 16 17 module.exports = mixin; 17 18 /**19 * Ensure Windows-style paths are formatted properly20 */21 22 const makeFriendlyPath = function(aPath) {23 return path.sep === "\\" ? aPath.replace(/\\/g, "/").replace(/^[a-z]:\/?/i, "/") : aPath;24 }25 18 26 19 /** … … 64 57 exports.emit = function(str, pos) { 65 58 if (pos) { 66 var sourceFile = makeFriendlyPath(pos.source || 'source.css');59 var sourceFile = urix(pos.source || 'source.css'); 67 60 68 61 this.map.addMapping({ … … 115 108 var map = new SourceMapConsumer(originalMap.map); 116 109 var relativeTo = originalMap.sourcesRelativeTo; 117 this.map.applySourceMap(map, file, makeFriendlyPath(path.dirname(relativeTo)));110 this.map.applySourceMap(map, file, urix(path.dirname(relativeTo))); 118 111 } 119 112 } -
trip-planner-front/node_modules/css/package.json
r59329aa re29cc2e 1 1 { 2 "_args": [ 3 [ 4 "css@3.0.0", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "css@3.0.0", 10 "_id": "css@3.0.0", 2 "_from": "css@^2.0.0", 3 "_id": "css@2.2.4", 11 4 "_inBundle": false, 12 "_integrity": "sha512- DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ==",5 "_integrity": "sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw==", 13 6 "_location": "/css", 14 7 "_phantomChildren": {}, 15 8 "_requested": { 16 "type": " version",9 "type": "range", 17 10 "registry": true, 18 "raw": "css@ 3.0.0",11 "raw": "css@^2.0.0", 19 12 "name": "css", 20 13 "escapedName": "css", 21 "rawSpec": " 3.0.0",14 "rawSpec": "^2.0.0", 22 15 "saveSpec": null, 23 "fetchSpec": " 3.0.0"16 "fetchSpec": "^2.0.0" 24 17 }, 25 18 "_requiredBy": [ 26 "/c ritters"19 "/css-parse" 27 20 ], 28 "_resolved": "https://registry.npmjs.org/css/-/css-3.0.0.tgz", 29 "_spec": "3.0.0", 30 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 21 "_resolved": "https://registry.npmjs.org/css/-/css-2.2.4.tgz", 22 "_shasum": "c646755c73971f2bba6a601e2cf2fd71b1298929", 23 "_spec": "css@^2.0.0", 24 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front\\node_modules\\css-parse", 31 25 "author": { 32 26 "name": "TJ Holowaychuk", … … 36 30 "url": "https://github.com/reworkcss/css/issues" 37 31 }, 32 "bundleDependencies": false, 38 33 "dependencies": { 39 "inherits": "^2.0. 4",34 "inherits": "^2.0.3", 40 35 "source-map": "^0.6.1", 41 "source-map-resolve": "^0.6.0" 36 "source-map-resolve": "^0.5.2", 37 "urix": "^0.1.0" 42 38 }, 39 "deprecated": false, 43 40 "description": "CSS parser / stringifier", 44 41 "devDependencies": { 45 "bytes": "^ 3.1.0",46 "matcha": "^0. 7.0",47 "mocha": "^ 8.0.1",48 "should": "^ 13.2.3"42 "bytes": "^1.0.0", 43 "matcha": "^0.5.0", 44 "mocha": "^1.21.3", 45 "should": "^4.0.4" 49 46 }, 50 47 "files": [ … … 69 66 "scripts": { 70 67 "benchmark": "matcha", 71 "test": "mocha --require should --reporter spec test/*.js"68 "test": "mocha --require should --reporter spec --bail test/*.js" 72 69 }, 73 "version": " 3.0.0"70 "version": "2.2.4" 74 71 }
Note:
See TracChangeset
for help on using the changeset viewer.