diff --git a/tools/gulp/util/package-build.ts b/tools/gulp/util/package-build.ts index 1eb32be3a006..7613d00c68fc 100644 --- a/tools/gulp/util/package-build.ts +++ b/tools/gulp/util/package-build.ts @@ -31,7 +31,7 @@ export function composeRelease(packageName: string) { copyFiles(DIST_BUNDLES, `${packageName}.umd?(.min).js`, join(releasePath, 'bundles')); copyFiles(DIST_BUNDLES, `${packageName}?(.es5).js`, join(releasePath, '@angular')); copyFiles(PROJECT_ROOT, 'LICENSE', releasePath); - copyFiles(SOURCE_ROOT, 'README', releasePath); + copyFiles(SOURCE_ROOT, 'README.md', releasePath); copyFiles(sourcePath, 'package.json', releasePath); updatePackageVersion(releasePath);