Skip to content

Commit

Permalink
fix: Fix invalid version bump skipping some package.json files (#337)
Browse files Browse the repository at this point in the history
  • Loading branch information
mkleszcz authored Jul 12, 2023
1 parent 15241e2 commit ac4c6cc
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .versionrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ module.exports = {
filename: './package.json',
type: 'json',
},
{
filename: './packages/backend/package.json',
type: 'json',
},
{
filename: './packages/webapp/package.json',
type: 'json',
Expand Down Expand Up @@ -54,6 +58,10 @@ module.exports = {
filename: './packages/contentful/package.json',
type: 'json',
},
{
filename: './packages/internal/core/package.json',
type: 'json',
},
{
filename: './packages/internal/docs/core.json',
type: 'json',
Expand All @@ -74,6 +82,18 @@ module.exports = {
filename: './packages/internal/tools/package.json',
type: 'json',
},
{
filename: './packages/infra/infra-core/package.json',
type: 'json',
},
{
filename: './packages/infra/infra-functions/package.json',
type: 'json',
},
{
filename: './packages/infra/infra-shared/package.json',
type: 'json',
},
],
tagPrefix: '',
};

0 comments on commit ac4c6cc

Please sign in to comment.