Skip to content

Commit

Permalink
Merge branch 'canary' into feature/monorepo-managed
Browse files Browse the repository at this point in the history
  • Loading branch information
sokra committed Oct 20, 2021
2 parents cfe1a30 + 094153f commit 090bb4d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/actions/next-stats-action/src/prepare/repo-setup.js
Expand Up @@ -73,6 +73,10 @@ module.exports = (actionInfo) => {
const packedPkgPath = path.join(pkgPath, `${pkg}-packed.tgz`)

const pkgDataPath = path.join(pkgPath, 'package.json')
if (!fs.existsSync(pkgDataPath)) {
console.log(`Skipping ${pkgDataPath}`)
continue
}
const pkgData = require(pkgDataPath)
const { name } = pkgData
pkgDatas.set(name, {
Expand Down

0 comments on commit 090bb4d

Please sign in to comment.