Skip to content

Commit

Permalink
chore(plugin-pnp): print NodeLinker values in nodeLinker description
Browse files Browse the repository at this point in the history
  • Loading branch information
trivikr committed Oct 24, 2023
1 parent cee4fd1 commit 0ecb3de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/plugin-pnp/sources/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ const plugin: Plugin<CoreHooks & StageHooks> = {
},
configuration: {
nodeLinker: {
description: `The linker used for installing Node packages, one of: "pnp", "node-modules"`,
description: `The linker used for installing Node packages, one of: ${Object.values(NodeLinker).map(v => `"${v}"`).join(`, `)}}`,
type: SettingsType.STRING,
default: NodeLinker.PNP,
},
Expand Down

0 comments on commit 0ecb3de

Please sign in to comment.