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/@schematics/angular
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trip-planner-front/node_modules/@schematics/angular/package.json

    r59329aa re29cc2e  
    11{
    2   "_args": [
    3     [
    4       "@schematics/angular@12.2.9",
    5       "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front"
    6     ]
    7   ],
    8   "_development": true,
    9   "_from": "@schematics/angular@12.2.9",
    10   "_id": "@schematics/angular@12.2.9",
     2  "_from": "@schematics/angular@12.2.13",
     3  "_id": "@schematics/angular@12.2.13",
    114  "_inBundle": false,
    12   "_integrity": "sha512-IIczXVwegREekub0+bBxOc0dDL7j8p5rG6rB/2btJRR+tg04milP+BkvnQgksmIkW1OcZ5beRSB37R3jY/W/PA==",
     5  "_integrity": "sha512-TrigQ9TCmAedf1J5PSSSfTC+sScYrITeAUN8a9rlkjZNvff8hHVyQaiZmhqL+egKQL828mhkqpnFUDd4QsPBIw==",
    136  "_location": "/@schematics/angular",
    147  "_phantomChildren": {},
     
    169    "type": "version",
    1710    "registry": true,
    18     "raw": "@schematics/angular@12.2.9",
     11    "raw": "@schematics/angular@12.2.13",
    1912    "name": "@schematics/angular",
    2013    "escapedName": "@schematics%2fangular",
    2114    "scope": "@schematics",
    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": [
    2720    "/@angular/cli"
    2821  ],
    29   "_resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-12.2.9.tgz",
    30   "_spec": "12.2.9",
    31   "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front",
     22  "_resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-12.2.13.tgz",
     23  "_shasum": "5bf3e7b699a42d7fd7f7aa12bbe4534e671e7201",
     24  "_spec": "@schematics/angular@12.2.13",
     25  "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front\\node_modules\\@angular\\cli",
    3226  "author": {
    3327    "name": "Angular Authors"
     
    3630    "url": "https://github.com/angular/angular-cli/issues"
    3731  },
     32  "bundleDependencies": false,
    3833  "dependencies": {
    39     "@angular-devkit/core": "12.2.9",
    40     "@angular-devkit/schematics": "12.2.9",
     34    "@angular-devkit/core": "12.2.13",
     35    "@angular-devkit/schematics": "12.2.13",
    4136    "jsonc-parser": "3.0.0"
    4237  },
     38  "deprecated": false,
    4339  "description": "Schematics specific to Angular",
    4440  "engines": {
    4541    "node": "^12.14.1 || >=14.0.0",
    46     "npm": "^6.11.0 || ^7.5.6",
     42    "npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
    4743    "yarn": ">= 1.13.0"
    4844  },
     
    6561  },
    6662  "schematics": "./collection.json",
    67   "version": "12.2.9"
     63  "version": "12.2.13"
    6864}
  • trip-planner-front/node_modules/@schematics/angular/universal/index.js

    r59329aa re29cc2e  
    131131        // indent contents
    132132        const triviaWidth = bootstrapCall.getLeadingTriviaWidth();
    133         const beforeText = `document.addEventListener('DOMContentLoaded', () => {\n` +
    134             ' '.repeat(triviaWidth > 2 ? triviaWidth + 1 : triviaWidth);
    135         const afterText = `\n${triviaWidth > 2 ? ' '.repeat(triviaWidth - 1) : ''}});`;
     133        const beforeText = `function bootstrap() {\n` + ' '.repeat(triviaWidth > 2 ? triviaWidth + 1 : triviaWidth);
     134        const afterText = `\n${triviaWidth > 2 ? ' '.repeat(triviaWidth - 1) : ''}};\n` +
     135            `
     136
     137if (document.readyState === 'complete') {
     138  bootstrap();
     139} else {
     140  document.addEventListener('DOMContentLoaded', bootstrap);
     141}
     142`;
    136143        // in some cases we need to cater for a trailing semicolon such as;
    137144        // bootstrap().catch(err => console.log(err));
Note: See TracChangeset for help on using the changeset viewer.