Skip to content

Commit

Permalink
Don't show internal variables in variable list
Browse files Browse the repository at this point in the history
  • Loading branch information
desplesda committed Dec 4, 2024
1 parent 64f92aa commit aaa875f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/playground.ts
Original file line number Diff line number Diff line change
Expand Up @@ -610,6 +610,10 @@ function updateVariableStorageDisplay(storage: yarnspinner.IVariableStorage) {

// Create new entries for the current set of variables
for (let variableName of storage.getVariableNames()) {
if (variableName.startsWith("$Yarn.Internal.")) {
continue;
}

let variable = storage.getValue(variableName);

let row = document.createElement("tr");
Expand Down

0 comments on commit aaa875f

Please sign in to comment.