Changeset e29cc2e for trip-planner-front/node_modules/@schematics
- Timestamp:
- 11/25/21 22:08:24 (3 years ago)
- Branches:
- master
- Children:
- 8d391a1
- Parents:
- 59329aa
- 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 1 1 { 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", 11 4 "_inBundle": false, 12 "_integrity": "sha512- IIczXVwegREekub0+bBxOc0dDL7j8p5rG6rB/2btJRR+tg04milP+BkvnQgksmIkW1OcZ5beRSB37R3jY/W/PA==",5 "_integrity": "sha512-TrigQ9TCmAedf1J5PSSSfTC+sScYrITeAUN8a9rlkjZNvff8hHVyQaiZmhqL+egKQL828mhkqpnFUDd4QsPBIw==", 13 6 "_location": "/@schematics/angular", 14 7 "_phantomChildren": {}, … … 16 9 "type": "version", 17 10 "registry": true, 18 "raw": "@schematics/angular@12.2. 9",11 "raw": "@schematics/angular@12.2.13", 19 12 "name": "@schematics/angular", 20 13 "escapedName": "@schematics%2fangular", 21 14 "scope": "@schematics", 22 "rawSpec": "12.2. 9",15 "rawSpec": "12.2.13", 23 16 "saveSpec": null, 24 "fetchSpec": "12.2. 9"17 "fetchSpec": "12.2.13" 25 18 }, 26 19 "_requiredBy": [ 27 20 "/@angular/cli" 28 21 ], 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", 32 26 "author": { 33 27 "name": "Angular Authors" … … 36 30 "url": "https://github.com/angular/angular-cli/issues" 37 31 }, 32 "bundleDependencies": false, 38 33 "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", 41 36 "jsonc-parser": "3.0.0" 42 37 }, 38 "deprecated": false, 43 39 "description": "Schematics specific to Angular", 44 40 "engines": { 45 41 "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", 47 43 "yarn": ">= 1.13.0" 48 44 }, … … 65 61 }, 66 62 "schematics": "./collection.json", 67 "version": "12.2. 9"63 "version": "12.2.13" 68 64 } -
trip-planner-front/node_modules/@schematics/angular/universal/index.js
r59329aa re29cc2e 131 131 // indent contents 132 132 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 137 if (document.readyState === 'complete') { 138 bootstrap(); 139 } else { 140 document.addEventListener('DOMContentLoaded', bootstrap); 141 } 142 `; 136 143 // in some cases we need to cater for a trailing semicolon such as; 137 144 // bootstrap().catch(err => console.log(err));
Note:
See TracChangeset
for help on using the changeset viewer.