Skip to content

Commit 8b411ad

Browse files
devversionjelbourn
authored andcommitted
build: copy readme to releases (#4079)
* Due to a typo the `README.md` file is not copied properly to the releases.
1 parent fe9204e commit 8b411ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/gulp/util/package-build.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export function composeRelease(packageName: string) {
3131
copyFiles(DIST_BUNDLES, `${packageName}.umd?(.min).js`, join(releasePath, 'bundles'));
3232
copyFiles(DIST_BUNDLES, `${packageName}?(.es5).js`, join(releasePath, '@angular'));
3333
copyFiles(PROJECT_ROOT, 'LICENSE', releasePath);
34-
copyFiles(SOURCE_ROOT, 'README', releasePath);
34+
copyFiles(SOURCE_ROOT, 'README.md', releasePath);
3535
copyFiles(sourcePath, 'package.json', releasePath);
3636

3737
updatePackageVersion(releasePath);

0 commit comments

Comments
 (0)