- Timestamp:
- 11/25/21 22:08:24 (3 years ago)
- Branches:
- master
- Children:
- 8d391a1
- Parents:
- 59329aa
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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()) {
Note:
See TracChangeset
for help on using the changeset viewer.