From 5120df477c4e3b9b27bd8e8f51405ac58e2132a1 Mon Sep 17 00:00:00 2001 From: Paul Gschwendtner Date: Thu, 13 Apr 2017 08:42:44 -0700 Subject: [PATCH] build: copy readme to releases * Due to a typo the `README.md` file is not copied properly to the releases. --- tools/gulp/util/package-build.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);