How to use the lerna/lib/FileSystemUtilities.existsSync function in lerna

To help you get started, we’ve selected a few lerna examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github wix / lerna-script / lerna-script / lib / detect-changes.js View on Github external
return label => {
    const ignored = collectIgnores(lernaPackage.location)
    const targetSentinelForPackage = targetFileSentinelFile(lernaPackage, label)
    return (
      fsUtils.existsSync(targetSentinelForPackage) &&
      !modifiedAfter(
        lernaPackage.location,
        '.',
        ignored,
        fs.statSync(targetSentinelForPackage).mtime.getTime()
      )
    )
  }
}