(dependencies)
| 320 | * extract matching FK dependency package names from keys in a given object |
| 321 | */ |
| 322 | export function getFKDependenciesFromObj(dependencies) { |
| 323 | let matches = Object.keys(dependencies).filter( |
| 324 | (key) => key.startsWith('@formkit/') && !formkitExternals.includes(key) |
| 325 | ) |
| 326 | matches = matches.map((dependency) => dependency.replace('@formkit/', '')) |
| 327 | return matches |
| 328 | } |
| 329 | |
| 330 | /** |
| 331 | * Given a package name, this will get the latest N commits in the associated directory |
no outgoing calls
no test coverage detected