Skip to content

Commit

Permalink
fixup! update scripts/bundle-and-gitignore-deps.js
Browse files Browse the repository at this point in the history
  • Loading branch information
wraithgar authored Jun 4, 2021
1 parent 7e68317 commit f41694a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/bundle-and-gitignore-deps.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const arb = new Arborist({ path: resolve(__dirname, '..') })
const shouldIgnore = []

arb.loadVirtual().then(tree => {
for (const [, node] of tree.children.entries()) {
for (const node of tree.children.values()) {
if (node.dev || node.isLink) {
console.error('ignore', node.name)
shouldIgnore.push(node.name)
Expand Down

0 comments on commit f41694a

Please sign in to comment.