function writePackageJsonUpdate()

in src/update-version.js [72:147]


function writePackageJsonUpdate() {
    // todo: read this from the package.json
    let updates = [
    '"@microsoft/windows-admin-center-sdk": "next"',
    '"@angular/animations": "7.1.1"',
    '"@angular/common": "7.1.1"',
    '"@angular/compiler": "7.1.1"',
    '"@angular/core": "7.1.1"',
    '"@angular/forms": "7.1.1"',
    '"@angular/language-service": "7.1.1"',
    '"@angular/platform-browser": "7.1.1"',
    '"@angular/platform-browser-dynamic": "7.1.1"',
    '"@angular/router": "7.1.1"',
    '"core-js": "2.6.0"',
    '"rxjs": "6.3.3"',
    '"zone.js": "0.8.26"',
    '"@angular-devkit/build-angular": "^0.12.1"',
    '"@angular-devkit/build-ng-packagr": "0.11.2"',
    '"@angular/animations": "7.1.1"',
    '"@angular/cli": "7.1.2"',
    '"@angular/common": "7.1.1"',
    '"@angular/compiler": "7.1.1"',
    '"@angular/compiler-cli": "7.1.1"',
    '"@angular/core": "7.1.1"',
    '"@angular/forms": "7.1.1"',
    '"@angular/language-service": "7.1.1"',
    '"@angular/platform-browser": "7.1.1"',
    '"@angular/platform-browser-dynamic": "7.1.1"',
    '"@angular/router": "7.1.1"',
    '"@types/chart.js": "2.7.40"',
    '"@types/jasmine": "~2.8.8"',
    '"@types/jasminewd2": "~2.0.3"',
    '"@types/node": "8.9.5"',
    '"ajv": "6.4.0"',
    '"codelyzer": "4.5.0"',
    '"core-js": "2.6.0"',
    '"gulp": "^3.9.1"',
    '"gulp-inline-ng2-template": "5.0.1"',
    '"jasmine-core": "~2.99.1"',
    '"jasmine-spec-reporter": "~4.2.1"',
    '"karma": "^3.1.4"',
    '"karma-jasmine": "~1.1.2"',
    '"karma-remap-istanbul": "^0.6.0"',
    '"ng-packagr": "4.4.0"',
    '"readline-sync": "1.4.9"',
    '"rxjs": "6.3.3"',
    '"rxjs-tslint": "^0.1.5"',
    '"rxjs-tslint-rules": "4.10.0"',
    '"signalr": "2.3.0"',
    '"ts-node": "1.2.1"',
    '"tsickle": "0.33.1"',
    '"tslint": "5.11.0"',
    '"tslint-consistent-codestyle": "1.14.0"',
    '"tslint-eslint-rules": "5.4.0"',
    '"tslint-microsoft-contrib": "5.2.1"',
    '"typescript": "3.1.6"',
    '"zone.js": "0.8.26"'
    ];

    console.log('');
    console.log('The following updates need to be made in your package.json file (if they haven\'t already been made):');
    updateSource.push('\n')
    updateSource.push('The following updates need to be made in your package.json file (if they haven\'t already been made):');

    for(var i in updates) {
        console.log(updates[i]);
        updateSource.push(updates[i]  + '\n');
    }


    console.log('\n')
    console.log('Any gulp configuration will need to be moved from gulpfile.js to gulpfile.ts/index.ts. gulpfile.js and the gulps folder will then need to be deleted.');
    updateSource.push('\n')
    updateSource.push('Any gulp configuration will need to be moved from gulpfile.js to gulpfile.ts/index.ts gulpfile.js and the gulps folder will then need to be deleted.');

}