Changeset e29cc2e for trip-planner-front/node_modules/@angular/cli
- Timestamp:
- 11/25/21 22:08:24 (3 years ago)
- Branches:
- master
- Children:
- 8d391a1
- Parents:
- 59329aa
- 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 21 21 ['cli.analytics', undefined], 22 22 ['cli.analyticsSharing.tracking', undefined], 23 ['cli.analyticsSharing.uuid', (v) => (v ? `${v}` : uuid_1.v4())],23 ['cli.analyticsSharing.uuid', (v) => (v === '' ? uuid_1.v4() : `${v}`)], 24 24 ]); 25 25 /** … … 55 55 } 56 56 function normalizeValue(value) { 57 var _a, _b;58 57 const valueString = `${value}`.trim(); 59 58 switch (valueString) { … … 70 69 return +valueString; 71 70 } 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 } 73 81 } 74 82 class ConfigCommand extends command_1.Command { -
trip-planner-front/node_modules/@angular/cli/commands/update-impl.js
r59329aa re29cc2e 164 164 async executeMigrations(packageName, collectionPath, from, to, commit) { 165 165 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]); 167 167 const migrations = []; 168 168 for (const name of collection.listSchematicNames()) { -
trip-planner-front/node_modules/@angular/cli/lib/config/schema.json
r59329aa re29cc2e 80 80 "description": "Analytics sharing info tracking ID.", 81 81 "type": "string", 82 "pattern": "^ GA-\\d+-\\d+$"82 "pattern": "^(GA|UA)?-\\d+-\\d+$" 83 83 }, 84 84 "uuid": { 85 85 "description": "Analytics sharing info universally unique identifier.", 86 "type": "string" 86 "type": "string", 87 "format": "uuid" 87 88 } 88 89 } -
trip-planner-front/node_modules/@angular/cli/models/analytics.js
r59329aa re29cc2e 183 183 console.log(''); 184 184 console.log(core_1.tags.stripIndent ` 185 Thank you for sharing anonymous usage data. Would you change your mind, the following185 Thank you for sharing anonymous usage data. Should you change your mind, the following 186 186 command will disable this feature entirely: 187 187 -
trip-planner-front/node_modules/@angular/cli/package.json
r59329aa re29cc2e 1 1 { 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", 11 4 "_inBundle": false, 12 "_integrity": "sha512- aYAb6LkqIpKOZE8Kkhst5NNWpM4W1o1mmPTt6Nm6b/4wVLSC+mDp1IBCJSihDWysDetXA5J3kNJ4R2XnpHpIKw==",5 "_integrity": "sha512-Yz6MuwdxxP6U2i8iRuCSNZeJxlLDPshT/joymCsFdjwSMGEH9Kk9DdvAfFYfzdHGdHbGrDdASJ4G+uALyNSLxw==", 13 6 "_location": "/@angular/cli", 14 7 "_phantomChildren": {}, … … 16 9 "type": "version", 17 10 "registry": true, 18 "raw": "@angular/cli@12.2. 9",11 "raw": "@angular/cli@12.2.13", 19 12 "name": "@angular/cli", 20 13 "escapedName": "@angular%2fcli", 21 14 "scope": "@angular", 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 "#DEV:/" 20 "#DEV:/", 21 "#USER" 28 22 ], 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", 31 26 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 32 27 "author": { … … 39 34 "url": "https://github.com/angular/angular-cli/issues" 40 35 }, 36 "bundleDependencies": false, 41 37 "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", 46 42 "@yarnpkg/lockfile": "1.1.0", 47 43 "ansi-colors": "4.1.1", … … 60 56 "uuid": "8.3.2" 61 57 }, 58 "deprecated": false, 62 59 "description": "CLI tool for Angular", 63 60 "engines": { 64 61 "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", 66 63 "yarn": ">= 1.13.0" 67 64 }, … … 81 78 "migrations": "@schematics/angular/migrations/migration-collection.json", 82 79 "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" 89 86 } 90 87 }, … … 96 93 "postinstall": "node ./bin/postinstall/script.js" 97 94 }, 98 "version": "12.2. 9"95 "version": "12.2.13" 99 96 }
Note:
See TracChangeset
for help on using the changeset viewer.