Skip to content

Commit

Permalink
Merge pull request #1791 from SUI-Components/dependabot/npm_and_yarn/…
Browse files Browse the repository at this point in the history
…babel/plugin-transform-modules-commonjs-7.24.8

upgrade(deps): bump @babel/plugin-transform-modules-commonjs from 7.18.6 to 7.24.8
  • Loading branch information
kikoruiz authored Aug 23, 2024
2 parents b3b7e7f + 3258ec8 commit 3b78497
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 12 deletions.
15 changes: 7 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/sui-test/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"license": "MIT",
"dependencies": {
"@babel/core": "7.18.10",
"@babel/plugin-transform-modules-commonjs": "7.18.6",
"@babel/plugin-transform-modules-commonjs": "7.24.8",
"@babel/register": "7.18.9",
"@faker-js/faker": "8.0.2",
"@s-ui/compiler-config": "1",
Expand Down
6 changes: 3 additions & 3 deletions scripts/publish-tagged-packages.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ async function publishPackages() {
packagesToPublish.forEach(async packageName => {
const packageConfig = getConfig(packageName)
const {name} = packageConfig
tag = tag.startsWith(DEPENDABOT_TAG) ? DEPENDABOT_TAG : tag
const version = await getPackageVersion({name, tag})
const packageTag = tag.startsWith(DEPENDABOT_TAG) ? DEPENDABOT_TAG : tag
const version = await getPackageVersion({name, tag: packageTag})

// Set the new tagged version.
packageConfig.version = version
Expand All @@ -101,7 +101,7 @@ async function publishPackages() {

fs.writeFileSync(packageJsonPath, packageJson)

await $$`npm publish --tag ${tag}`
await $$`npm publish --tag ${packageTag}`
})
}

Expand Down

0 comments on commit 3b78497

Please sign in to comment.