Ignore:
Timestamp:
11/25/21 22:08:24 (3 years ago)
Author:
Ema <ema_spirova@…>
Branches:
master
Children:
8d391a1
Parents:
59329aa
Message:

primeNG components

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  
    77var SourceMapConsumer = require('source-map').SourceMapConsumer;
    88var sourceMapResolve = require('source-map-resolve');
     9var urix = require('urix');
    910var fs = require('fs');
    1011var path = require('path');
     
    1516
    1617module.exports = mixin;
    17 
    18 /**
    19  * Ensure Windows-style paths are formatted properly
    20  */
    21 
    22 const makeFriendlyPath = function(aPath) {
    23   return path.sep === "\\" ? aPath.replace(/\\/g, "/").replace(/^[a-z]:\/?/i, "/") : aPath;
    24 }
    2518
    2619/**
     
    6457exports.emit = function(str, pos) {
    6558  if (pos) {
    66     var sourceFile = makeFriendlyPath(pos.source || 'source.css');
     59    var sourceFile = urix(pos.source || 'source.css');
    6760
    6861    this.map.addMapping({
     
    115108        var map = new SourceMapConsumer(originalMap.map);
    116109        var relativeTo = originalMap.sourcesRelativeTo;
    117         this.map.applySourceMap(map, file, makeFriendlyPath(path.dirname(relativeTo)));
     110        this.map.applySourceMap(map, file, urix(path.dirname(relativeTo)));
    118111      }
    119112    }
  • trip-planner-front/node_modules/css/package.json

    r59329aa re29cc2e  
    11{
    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",
    114  "_inBundle": false,
    12   "_integrity": "sha512-DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ==",
     5  "_integrity": "sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw==",
    136  "_location": "/css",
    147  "_phantomChildren": {},
    158  "_requested": {
    16     "type": "version",
     9    "type": "range",
    1710    "registry": true,
    18     "raw": "css@3.0.0",
     11    "raw": "css@^2.0.0",
    1912    "name": "css",
    2013    "escapedName": "css",
    21     "rawSpec": "3.0.0",
     14    "rawSpec": "^2.0.0",
    2215    "saveSpec": null,
    23     "fetchSpec": "3.0.0"
     16    "fetchSpec": "^2.0.0"
    2417  },
    2518  "_requiredBy": [
    26     "/critters"
     19    "/css-parse"
    2720  ],
    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",
    3125  "author": {
    3226    "name": "TJ Holowaychuk",
     
    3630    "url": "https://github.com/reworkcss/css/issues"
    3731  },
     32  "bundleDependencies": false,
    3833  "dependencies": {
    39     "inherits": "^2.0.4",
     34    "inherits": "^2.0.3",
    4035    "source-map": "^0.6.1",
    41     "source-map-resolve": "^0.6.0"
     36    "source-map-resolve": "^0.5.2",
     37    "urix": "^0.1.0"
    4238  },
     39  "deprecated": false,
    4340  "description": "CSS parser / stringifier",
    4441  "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"
    4946  },
    5047  "files": [
     
    6966  "scripts": {
    7067    "benchmark": "matcha",
    71     "test": "mocha --require should --reporter spec test/*.js"
     68    "test": "mocha --require should --reporter spec --bail test/*.js"
    7269  },
    73   "version": "3.0.0"
     70  "version": "2.2.4"
    7471}
Note: See TracChangeset for help on using the changeset viewer.