test(ivy): update Material to recent commit from master branch (#31569)
Previously, the ivy-2019 branch of the Material (aka components) repo was
used, which contains some changes that were necessary to work with Ivy.
These changes are not longer necessary, as Material's master branch is
fully working with Ivy today. To be up-to-date with recent Material
development and its support for more recent dependencies, e.g. TypeScript,
it is desirable for us to be on a newer version of Material.
This commit moves the Material tests away from the ivy-2019 branch, to a
recent commit on master. We are not targeting the master branch itself,
as that would introduce a moving target into Angular's CI checks, which
is undesirable.
Lastly, the usage of gulp to run Material's tests is changed into using
Bazel, as Material itself is now also built with Bazel.
PR Close #31569
2019-06-13 15:06:14 -04:00
|
|
|
/**
|
2020-03-02 12:35:30 -05:00
|
|
|
* @license
|
2020-05-19 15:08:49 -04:00
|
|
|
* Copyright Google LLC All Rights Reserved.
|
2020-03-02 12:35:30 -05:00
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
test(ivy): update Material to recent commit from master branch (#31569)
Previously, the ivy-2019 branch of the Material (aka components) repo was
used, which contains some changes that were necessary to work with Ivy.
These changes are not longer necessary, as Material's master branch is
fully working with Ivy today. To be up-to-date with recent Material
development and its support for more recent dependencies, e.g. TypeScript,
it is desirable for us to be on a newer version of Material.
This commit moves the Material tests away from the ivy-2019 branch, to a
recent commit on master. We are not targeting the master branch itself,
as that would introduce a moving target into Angular's CI checks, which
is undesirable.
Lastly, the usage of gulp to run Material's tests is changed into using
Bazel, as Material itself is now also built with Bazel.
PR Close #31569
2019-06-13 15:06:14 -04:00
|
|
|
* This script updates a package.json file by replacing all dependencies and devDependencies
|
|
|
|
* such that all packages from the @angular scope point to the packages-dist directory.
|
|
|
|
*
|
|
|
|
* Please be aware that updating of versions might introduce compatibility issues. For instance,
|
|
|
|
* if a peer dependency of Angular, e.g. "typescript" changes, the package.json that is updated
|
|
|
|
* by this script will not have updated the "typescript" dependency to satisfy the peer dependency
|
|
|
|
* requirement. As a result, incompatibility errors might occur.
|
|
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
const {yellow, green} = require('chalk');
|
|
|
|
const {existsSync, writeFileSync} = require('fs');
|
|
|
|
const {resolve} = require('path');
|
|
|
|
|
|
|
|
const [, , packageJsonPath, packagesDistRoot] = process.argv;
|
|
|
|
|
|
|
|
const packageJson = require(packageJsonPath);
|
|
|
|
|
|
|
|
const updated = [];
|
|
|
|
const skipped = [];
|
|
|
|
function updateDeps(dependencies) {
|
|
|
|
for (const packageName of Object.keys(dependencies)) {
|
|
|
|
// We're only interested to update packages in the @angular scope
|
|
|
|
if (!packageName.startsWith('@angular/')) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Within the packages-dist directory there's no scope name
|
|
|
|
const packageNameWithoutScope = packageName.replace('@angular/', '');
|
|
|
|
const packagePath = resolve(packagesDistRoot, packageNameWithoutScope);
|
|
|
|
|
|
|
|
// Check whether the package exists in packages-dist. Not all packages
|
|
|
|
// in the @angular scope are published from the main Angular repo.
|
|
|
|
if (existsSync(packagePath)) {
|
|
|
|
// Update the dependency to point to the packages-dist location.
|
|
|
|
dependencies[packageName] = `file:${packagePath}`;
|
|
|
|
updated.push(packageName);
|
|
|
|
} else {
|
|
|
|
skipped.push(packageName);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Update dependencies from @angular scope to those in the packages-dist folder
|
|
|
|
updateDeps(packageJson.dependencies);
|
|
|
|
updateDeps(packageJson.devDependencies);
|
|
|
|
|
|
|
|
// Write the updated package.json contents
|
|
|
|
writeFileSync(packageJsonPath, JSON.stringify(packageJson, null, 2));
|
|
|
|
|
|
|
|
// Log all packages that were updated
|
|
|
|
if (updated.length > 0) {
|
2020-03-02 12:35:30 -05:00
|
|
|
console.info(green(`Updated ${packageJsonPath} to packages in ${packagesDistRoot}:`));
|
|
|
|
console.info(` ${updated.join('\n ')}\n`);
|
test(ivy): update Material to recent commit from master branch (#31569)
Previously, the ivy-2019 branch of the Material (aka components) repo was
used, which contains some changes that were necessary to work with Ivy.
These changes are not longer necessary, as Material's master branch is
fully working with Ivy today. To be up-to-date with recent Material
development and its support for more recent dependencies, e.g. TypeScript,
it is desirable for us to be on a newer version of Material.
This commit moves the Material tests away from the ivy-2019 branch, to a
recent commit on master. We are not targeting the master branch itself,
as that would introduce a moving target into Angular's CI checks, which
is undesirable.
Lastly, the usage of gulp to run Material's tests is changed into using
Bazel, as Material itself is now also built with Bazel.
PR Close #31569
2019-06-13 15:06:14 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Log the packages that were skipped, as they were not present in the packages-dist directory
|
|
|
|
if (skipped.length > 0) {
|
2020-03-02 12:35:30 -05:00
|
|
|
console.info(yellow(`Did not update packages that were not present in ${packagesDistRoot}:`));
|
|
|
|
console.info(` ${skipped.join('\n ')}\n`);
|
test(ivy): update Material to recent commit from master branch (#31569)
Previously, the ivy-2019 branch of the Material (aka components) repo was
used, which contains some changes that were necessary to work with Ivy.
These changes are not longer necessary, as Material's master branch is
fully working with Ivy today. To be up-to-date with recent Material
development and its support for more recent dependencies, e.g. TypeScript,
it is desirable for us to be on a newer version of Material.
This commit moves the Material tests away from the ivy-2019 branch, to a
recent commit on master. We are not targeting the master branch itself,
as that would introduce a moving target into Angular's CI checks, which
is undesirable.
Lastly, the usage of gulp to run Material's tests is changed into using
Bazel, as Material itself is now also built with Bazel.
PR Close #31569
2019-06-13 15:06:14 -04:00
|
|
|
}
|