[BUG] check
command do not list all ink dependencies correctly
#203
Labels
check
command do not list all ink dependencies correctly
#203
Description
swanky-cli/src/commands/check/index.ts
Line 82 in 9a9d290
Here we should filter both possible dependency types: "ink" & "ink_" (e.g. "ink_e2e").
We can use this filter approach instead:
.filter(([depName]) => /^ink($|_)/.test(depName))
The text was updated successfully, but these errors were encountered: