(actions)
| 80 | }; |
| 81 | |
| 82 | const filesFrom = (actions) => |
| 83 | actions |
| 84 | .filter((action) => action.type === "generate-files") |
| 85 | .map((action) => path.basename(action.path)); |
| 86 | |
| 87 | const packagesFrom = (actions) => |
| 88 | actions.find((action) => action.type === "install-dependencies").packages; |