Sha256: 809528ba7b0316446a81684a6eae23581cab1dad9909380bf01b50adf649973d

Contents?: true

Size: 659 Bytes

Versions: 43

Compression:

Stored size: 659 Bytes

Contents

var path = require('path')
var fs = require('fs')

function defaultCheck (dir) {
  return fs.existsSync(path.join(dir, 'package.json'))
}

function findRoot (start, check) {
  start = start || module.parent.filename
  check = check || defaultCheck

  if (typeof start === 'string') {
    if (start[start.length - 1] !== path.sep) {
      start += path.sep
    }
    start = start.split(path.sep)
  }
  if (!start.length) {
    throw new Error('package.json not found in path')
  }
  start.pop()
  var dir = start.join(path.sep)
  try {
    if (check(dir)) {
      return dir
    }
  } catch (e) {}
  return findRoot(start, check)
}

module.exports = findRoot

Version data entries

43 entries across 43 versions & 1 rubygems

Version Path
govuk_publishing_components-18.0.0 node_modules/find-root/index.js
govuk_publishing_components-17.21.0 node_modules/find-root/index.js
govuk_publishing_components-17.20.0 node_modules/find-root/index.js
govuk_publishing_components-17.19.1 node_modules/find-root/index.js
govuk_publishing_components-17.19.0 node_modules/find-root/index.js
govuk_publishing_components-17.18.0 node_modules/find-root/index.js
govuk_publishing_components-17.17.0 node_modules/find-root/index.js
govuk_publishing_components-17.16.0 node_modules/find-root/index.js
govuk_publishing_components-17.15.0 node_modules/find-root/index.js
govuk_publishing_components-17.14.0 node_modules/find-root/index.js
govuk_publishing_components-17.13.0 node_modules/find-root/index.js
govuk_publishing_components-17.12.2 node_modules/find-root/index.js
govuk_publishing_components-17.12.1 node_modules/find-root/index.js
govuk_publishing_components-17.12.0 node_modules/find-root/index.js
govuk_publishing_components-17.11.0 node_modules/find-root/index.js
govuk_publishing_components-17.10.0 node_modules/find-root/index.js
govuk_publishing_components-17.9.0 node_modules/find-root/index.js
govuk_publishing_components-17.8.0 node_modules/find-root/index.js
govuk_publishing_components-17.7.0 node_modules/find-root/index.js
govuk_publishing_components-17.6.1 node_modules/find-root/index.js