Skip to content

Commit

Permalink
chore: changesets should ignore cdn
Browse files Browse the repository at this point in the history
  • Loading branch information
andipaetzold committed Sep 12, 2024
1 parent e7b5474 commit ad1d9f4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions .changeset/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
}
],
"ignore": [
"@contentful/f36-cdn",
"@contentful/f36-layout",
"@contentful/f36-progress-stepper",
"@contentful/f36-navlist",
Expand Down
6 changes: 5 additions & 1 deletion scripts/changesets/changelog-generate.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@ const cwd = process.cwd();
// Umbrella package
const componentsPkg = '@contentful/f36-components';
// Packages we don't want to have on changelog
const ignorePkgs = ['@contentful/f36-website', '@contentful/f36-docs-utils'];
const ignorePkgs = [
'@contentful/f36-cdn',
'@contentful/f36-website',
'@contentful/f36-docs-utils',
];

// Format package names as Start Case
function startCase(string) {
Expand Down

0 comments on commit ad1d9f4

Please sign in to comment.