Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.js « lib « fs « @npmcli « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f669efc1a91e0be6641567620812fa15b49d5352 (plain)
1
2
3
4
5
6
7
8
9
module.exports = {
  ...require('./fs.js'),
  copyFile: require('./copy-file.js'),
  mkdir: require('./mkdir/index.js'),
  mkdtemp: require('./mkdtemp.js'),
  rm: require('./rm/index.js'),
  withTempDir: require('./with-temp-dir.js'),
  writeFile: require('./write-file.js'),
}