Skip to content

Commit

Permalink
fix: ensure Arborist constructor gets passed around everywhere for pa…
Browse files Browse the repository at this point in the history
…cote (#5634)
  • Loading branch information
nlf committed Oct 4, 2022
1 parent 4c52d85 commit 02fcbb6
Showing 1 changed file with 4 additions and 0 deletions.
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

0 comments on commit 02fcbb6

Please sign in to comment.