Skip to content

Commit 64bcf4c

Browse files
authoredApr 10, 2024
fix(perf): only initialize workpaces when we are inside a workspace (#7360)
If we didn't load `glob`, we can save up to `6ms` by lazy loading this module.
1 parent 5a28a29 commit 64bcf4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎lib/base-command.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
const { relative } = require('path')
44

55
const { definitions } = require('@npmcli/config/lib/definitions')
6-
const getWorkspaces = require('./workspaces/get-workspaces.js')
76
const { aliases: cmdAliases } = require('./utils/cmd-list')
87
const log = require('./utils/log-shim.js')
98

@@ -170,6 +169,7 @@ class BaseCommand {
170169
const relativeFrom = prefixInsideCwd ? this.npm.localPrefix : process.cwd()
171170

172171
const filters = this.npm.config.get('workspace')
172+
const getWorkspaces = require('./workspaces/get-workspaces.js')
173173
const ws = await getWorkspaces(filters, {
174174
path: this.npm.localPrefix,
175175
includeWorkspaceRoot,

0 commit comments

Comments
 (0)