Skip to content

Commit

Permalink
fix: issue with publish-npm.js
Browse files Browse the repository at this point in the history
  • Loading branch information
nmerget committed Feb 13, 2025
1 parent ec34e2c commit 13b991d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/github/publish-npm.js
Original file line number Diff line number Diff line change
@@ -44,15 +44,15 @@ for (const PACKAGE of packages) {
);

if (
PACKAGE !== 'foundations' &&
PACKAGE !== 'migration' &&
PACKAGE !== 'stylelint'
PACKAGE !== 'core-foundations' &&
PACKAGE !== 'core-migration' &&
PACKAGE !== 'core-stylelint'
) {
console.log('🕵️‍ Set foundations dependency');
execSync(
`npm pkg set dependencies.@db-ux/core-foundations=${VALID_SEMVER_VERSION} --workspace=@db-ux/${PACKAGE}`
);
if (PACKAGE !== 'components') {
if (PACKAGE !== 'core-components') {
execSync(
`npm pkg set dependencies.@db-ux/core-components=${VALID_SEMVER_VERSION} --workspace=@db-ux/${PACKAGE}`
);

0 comments on commit 13b991d

Please sign in to comment.