Sha256: 866d28b80e53a2a09985c23d99dbac867487dbd5dfdc8cf3df5c844c6beafbf8

Contents?: true

Size: 900 Bytes

Versions: 33

Compression:

Stored size: 900 Bytes

Contents

const { join, sep } = require('path')

const getOptions = require('./common/get-options.js')
const { mkdir, mkdtemp, rm } = require('fs/promises')

// create a temp directory, ensure its permissions match its parent, then call
// the supplied function passing it the path to the directory. clean up after
// the function finishes, whether it throws or not
const withTempDir = async (root, fn, opts) => {
  const options = getOptions(opts, {
    copy: ['tmpPrefix'],
  })
  // create the directory
  await mkdir(root, { recursive: true })

  const target = await mkdtemp(join(`${root}${sep}`, options.tmpPrefix || ''))
  let err
  let result

  try {
    result = await fn(target)
  } catch (_err) {
    err = _err
  }

  try {
    await rm(target, { force: true, recursive: true })
  } catch {
    // ignore errors
  }

  if (err) {
    throw err
  }

  return result
}

module.exports = withTempDir

Version data entries

33 entries across 33 versions & 1 rubygems

Version Path
immosquare-cleaner-0.1.60 node_modules/@npmcli/fs/lib/with-temp-dir.js
immosquare-cleaner-0.1.59 node_modules/@npmcli/fs/lib/with-temp-dir.js
immosquare-cleaner-0.1.58 node_modules/@npmcli/fs/lib/with-temp-dir.js
immosquare-cleaner-0.1.57 node_modules/@npmcli/fs/lib/with-temp-dir.js
immosquare-cleaner-0.1.56 node_modules/@npmcli/fs/lib/with-temp-dir.js
immosquare-cleaner-0.1.55 node_modules/@npmcli/fs/lib/with-temp-dir.js
immosquare-cleaner-0.1.54 node_modules/@npmcli/fs/lib/with-temp-dir.js
immosquare-cleaner-0.1.53 node_modules/@npmcli/fs/lib/with-temp-dir.js
immosquare-cleaner-0.1.52 node_modules/@npmcli/fs/lib/with-temp-dir.js
immosquare-cleaner-0.1.51 node_modules/@npmcli/fs/lib/with-temp-dir.js
immosquare-cleaner-0.1.50 node_modules/@npmcli/fs/lib/with-temp-dir.js
immosquare-cleaner-0.1.49 node_modules/@npmcli/fs/lib/with-temp-dir.js
immosquare-cleaner-0.1.48 node_modules/@npmcli/fs/lib/with-temp-dir.js
immosquare-cleaner-0.1.47 node_modules/@npmcli/fs/lib/with-temp-dir.js
immosquare-cleaner-0.1.46 node_modules/@npmcli/fs/lib/with-temp-dir.js
immosquare-cleaner-0.1.45 node_modules/@npmcli/fs/lib/with-temp-dir.js
immosquare-cleaner-0.1.44 node_modules/@npmcli/fs/lib/with-temp-dir.js
immosquare-cleaner-0.1.43 node_modules/@npmcli/fs/lib/with-temp-dir.js
immosquare-cleaner-0.1.42 node_modules/@npmcli/fs/lib/with-temp-dir.js
immosquare-cleaner-0.1.41 node_modules/@npmcli/fs/lib/with-temp-dir.js