Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions lib/npm.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
const Arborist = require('@npmcli/arborist')
const EventEmitter = require('events')
const { resolve, dirname, join } = require('path')
const Config = require('@npmcli/config')
Expand Down Expand Up @@ -310,6 +311,9 @@ class Npm extends EventEmitter {

get flatOptions () {
const { flat } = this.config
// the Arborist constructor is used almost everywhere we call pacote, it's easiest
// to attach it to flatOptions so it goes everywhere without having to touch every call
flat.Arborist = Arborist
if (this.command) {
flat.npmCommand = this.command
}
Expand Down