Skip to content

Commit

Permalink
feat: copies CHANGELOG.md to package destination
Browse files Browse the repository at this point in the history
  • Loading branch information
koen-vandevelde-kbc-be authored and alan-agius4 committed Oct 3, 2019
1 parent 194c6bb commit db5ad68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/ng-v5/package.transform.ts
Expand Up @@ -213,7 +213,7 @@ const writeNpmPackage = (pkgUri: string): Transform =>
switchMap(graph => {
const { data } = graph.get(pkgUri);
const filesToCopy = Promise.all(
[`${data.src}/LICENSE`, `${data.src}/README.md`].map(src =>
[`${data.src}/LICENSE`, `${data.src}/README.md`, `${data.src}/CHANGELOG.md`].map(src =>
copyFile(src, path.join(data.dest, path.basename(src)), { dereference: true }),
),
);
Expand Down

0 comments on commit db5ad68

Please sign in to comment.