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/webpack/node_modules
Files:
1 added
33 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • trip-planner-front/node_modules/webpack/node_modules/webpack-sources/lib/ConcatSource.js

    r59329aa re29cc2e  
    6262                                        buffers.push(bufferOrString);
    6363                                } else {
     64                                        // This will not happen
    6465                                        buffers.push(Buffer.from(bufferOrString, "utf-8"));
    6566                                }
  • trip-planner-front/node_modules/webpack/node_modules/webpack-sources/lib/OriginalSource.js

    r59329aa re29cc2e  
    99const getGeneratedSourceInfo = require("./helpers/getGeneratedSourceInfo");
    1010const Source = require("./Source");
    11 
    12 const SPLIT_REGEX = /[^\n;{}]+[;{} \r\t]*\n?|[;{} \r\t]+\n?|\n/g;
     11const splitIntoPotentialTokens = require("./helpers/splitIntoPotentialTokens");
    1312
    1413class OriginalSource extends Source {
     
    6261                if (!options || options.columns !== false) {
    6362                        // With column info we need to read all lines and split them
    64                         const matches = this._value.match(SPLIT_REGEX);
     63                        const matches = splitIntoPotentialTokens(this._value);
    6564                        let line = 1;
    6665                        let column = 0;
  • trip-planner-front/node_modules/webpack/node_modules/webpack-sources/package.json

    r59329aa re29cc2e  
    11{
    2   "_args": [
    3     [
    4       "webpack-sources@3.2.1",
    5       "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front"
    6     ]
    7   ],
    8   "_development": true,
    9   "_from": "webpack-sources@3.2.1",
    10   "_id": "webpack-sources@3.2.1",
     2  "_from": "webpack-sources@^3.2.0",
     3  "_id": "webpack-sources@3.2.2",
    114  "_inBundle": false,
    12   "_integrity": "sha512-t6BMVLQ0AkjBOoRTZgqrWm7xbXMBzD+XDq2EZ96+vMfn3qKgsvdXZhbPZ4ElUOpdv4u+iiGe+w3+J75iy/bYGA==",
     5  "_integrity": "sha512-cp5qdmHnu5T8wRg2G3vZZHoJPN14aqQ89SyQ11NpGH5zEMDCclt49rzo+MaRazk7/UeILhAI+/sEtcM+7Fr0nw==",
    136  "_location": "/webpack/webpack-sources",
    147  "_phantomChildren": {},
    158  "_requested": {
    16     "type": "version",
     9    "type": "range",
    1710    "registry": true,
    18     "raw": "webpack-sources@3.2.1",
     11    "raw": "webpack-sources@^3.2.0",
    1912    "name": "webpack-sources",
    2013    "escapedName": "webpack-sources",
    21     "rawSpec": "3.2.1",
     14    "rawSpec": "^3.2.0",
    2215    "saveSpec": null,
    23     "fetchSpec": "3.2.1"
     16    "fetchSpec": "^3.2.0"
    2417  },
    2518  "_requiredBy": [
    2619    "/webpack"
    2720  ],
    28   "_resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.1.tgz",
    29   "_spec": "3.2.1",
    30   "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front",
     21  "_resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.2.tgz",
     22  "_shasum": "d88e3741833efec57c4c789b6010db9977545260",
     23  "_spec": "webpack-sources@^3.2.0",
     24  "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front\\node_modules\\webpack",
    3125  "author": {
    3226    "name": "Tobias Koppers @sokra"
     
    3529    "url": "https://github.com/webpack/webpack-sources/issues"
    3630  },
     31  "bundleDependencies": false,
     32  "deprecated": false,
    3733  "description": "Source code handling classes for webpack",
    3834  "devDependencies": {
     
    8682    "test": "jest"
    8783  },
    88   "version": "3.2.1"
     84  "version": "3.2.2"
    8985}
Note: See TracChangeset for help on using the changeset viewer.