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/@angular/cli
Files:
7 added
5 edited
62 moved

Legend:

Unmodified
Added
Removed
  • trip-planner-front/node_modules/@angular/cli/commands/config-impl.js

    r59329aa re29cc2e  
    2121    ['cli.analytics', undefined],
    2222    ['cli.analyticsSharing.tracking', undefined],
    23     ['cli.analyticsSharing.uuid', (v) => (v ? `${v}` : uuid_1.v4())],
     23    ['cli.analyticsSharing.uuid', (v) => (v === '' ? uuid_1.v4() : `${v}`)],
    2424]);
    2525/**
     
    5555}
    5656function normalizeValue(value) {
    57     var _a, _b;
    5857    const valueString = `${value}`.trim();
    5958    switch (valueString) {
     
    7069        return +valueString;
    7170    }
    72     return (_b = (_a = json_file_1.parseJson(valueString)) !== null && _a !== void 0 ? _a : value) !== null && _b !== void 0 ? _b : undefined;
     71    try {
     72        // We use `JSON.parse` instead of `parseJson` because the latter will parse UUIDs
     73        // and convert them into a numberic entities.
     74        // Example: 73b61974-182c-48e4-b4c6-30ddf08c5c98 -> 73.
     75        // These values should never contain comments, therefore using `JSON.parse` is safe.
     76        return JSON.parse(valueString);
     77    }
     78    catch {
     79        return value;
     80    }
    7381}
    7482class ConfigCommand extends command_1.Command {
  • trip-planner-front/node_modules/@angular/cli/commands/update-impl.js

    r59329aa re29cc2e  
    164164    async executeMigrations(packageName, collectionPath, from, to, commit) {
    165165        const collection = this.workflow.engine.createCollection(collectionPath);
    166         const migrationRange = new semver.Range('>' + (semver.prerelease(from) ? from.split('-')[0] + '-0' : from) + ' <=' + to);
     166        const migrationRange = new semver.Range('>' + (semver.prerelease(from) ? from.split('-')[0] + '-0' : from) + ' <=' + to.split('-')[0]);
    167167        const migrations = [];
    168168        for (const name of collection.listSchematicNames()) {
  • trip-planner-front/node_modules/@angular/cli/lib/config/schema.json

    r59329aa re29cc2e  
    8080              "description": "Analytics sharing info tracking ID.",
    8181              "type": "string",
    82               "pattern": "^GA-\\d+-\\d+$"
     82              "pattern": "^(GA|UA)?-\\d+-\\d+$"
    8383            },
    8484            "uuid": {
    8585              "description": "Analytics sharing info universally unique identifier.",
    86               "type": "string"
     86              "type": "string",
     87              "format": "uuid"
    8788            }
    8889          }
  • trip-planner-front/node_modules/@angular/cli/models/analytics.js

    r59329aa re29cc2e  
    183183            console.log('');
    184184            console.log(core_1.tags.stripIndent `
    185         Thank you for sharing anonymous usage data. Would you change your mind, the following
     185        Thank you for sharing anonymous usage data. Should you change your mind, the following
    186186        command will disable this feature entirely:
    187187
  • trip-planner-front/node_modules/@angular/cli/package.json

    r59329aa re29cc2e  
    11{
    2   "_args": [
    3     [
    4       "@angular/cli@12.2.9",
    5       "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front"
    6     ]
    7   ],
    8   "_development": true,
    9   "_from": "@angular/cli@12.2.9",
    10   "_id": "@angular/cli@12.2.9",
     2  "_from": "@angular/cli@12.2.13",
     3  "_id": "@angular/cli@12.2.13",
    114  "_inBundle": false,
    12   "_integrity": "sha512-aYAb6LkqIpKOZE8Kkhst5NNWpM4W1o1mmPTt6Nm6b/4wVLSC+mDp1IBCJSihDWysDetXA5J3kNJ4R2XnpHpIKw==",
     5  "_integrity": "sha512-Yz6MuwdxxP6U2i8iRuCSNZeJxlLDPshT/joymCsFdjwSMGEH9Kk9DdvAfFYfzdHGdHbGrDdASJ4G+uALyNSLxw==",
    136  "_location": "/@angular/cli",
    147  "_phantomChildren": {},
     
    169    "type": "version",
    1710    "registry": true,
    18     "raw": "@angular/cli@12.2.9",
     11    "raw": "@angular/cli@12.2.13",
    1912    "name": "@angular/cli",
    2013    "escapedName": "@angular%2fcli",
    2114    "scope": "@angular",
    22     "rawSpec": "12.2.9",
     15    "rawSpec": "12.2.13",
    2316    "saveSpec": null,
    24     "fetchSpec": "12.2.9"
     17    "fetchSpec": "12.2.13"
    2518  },
    2619  "_requiredBy": [
    27     "#DEV:/"
     20    "#DEV:/",
     21    "#USER"
    2822  ],
    29   "_resolved": "https://registry.npmjs.org/@angular/cli/-/cli-12.2.9.tgz",
    30   "_spec": "12.2.9",
     23  "_resolved": "https://registry.npmjs.org/@angular/cli/-/cli-12.2.13.tgz",
     24  "_shasum": "ca586c14a6f83bb4390875be0a0fa709b9a2ae29",
     25  "_spec": "@angular/cli@12.2.13",
    3126  "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front",
    3227  "author": {
     
    3934    "url": "https://github.com/angular/angular-cli/issues"
    4035  },
     36  "bundleDependencies": false,
    4137  "dependencies": {
    42     "@angular-devkit/architect": "0.1202.9",
    43     "@angular-devkit/core": "12.2.9",
    44     "@angular-devkit/schematics": "12.2.9",
    45     "@schematics/angular": "12.2.9",
     38    "@angular-devkit/architect": "0.1202.13",
     39    "@angular-devkit/core": "12.2.13",
     40    "@angular-devkit/schematics": "12.2.13",
     41    "@schematics/angular": "12.2.13",
    4642    "@yarnpkg/lockfile": "1.1.0",
    4743    "ansi-colors": "4.1.1",
     
    6056    "uuid": "8.3.2"
    6157  },
     58  "deprecated": false,
    6259  "description": "CLI tool for Angular",
    6360  "engines": {
    6461    "node": "^12.14.1 || >=14.0.0",
    65     "npm": "^6.11.0 || ^7.5.6",
     62    "npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
    6663    "yarn": ">= 1.13.0"
    6764  },
     
    8178    "migrations": "@schematics/angular/migrations/migration-collection.json",
    8279    "packageGroup": {
    83       "@angular/cli": "12.2.9",
    84       "@angular-devkit/architect": "0.1202.9",
    85       "@angular-devkit/build-angular": "12.2.9",
    86       "@angular-devkit/build-webpack": "0.1202.9",
    87       "@angular-devkit/core": "12.2.9",
    88       "@angular-devkit/schematics": "12.2.9"
     80      "@angular/cli": "12.2.13",
     81      "@angular-devkit/architect": "0.1202.13",
     82      "@angular-devkit/build-angular": "12.2.13",
     83      "@angular-devkit/build-webpack": "0.1202.13",
     84      "@angular-devkit/core": "12.2.13",
     85      "@angular-devkit/schematics": "12.2.13"
    8986    }
    9087  },
     
    9693    "postinstall": "node ./bin/postinstall/script.js"
    9794  },
    98   "version": "12.2.9"
     95  "version": "12.2.13"
    9996}
Note: See TracChangeset for help on using the changeset viewer.