(type: 'info' | 'warn' | 'error', text: string)
| 64 | } |
| 65 | |
| 66 | function log(type: 'info' | 'warn' | 'error', text: string): Rule { |
| 67 | return (_, context) => context.logger[type](text); |
| 68 | } |
| 69 | |
| 70 | function* generateConfigurationEnvironments( |
| 71 | buildTarget: TargetDefinition, |
no outgoing calls
no test coverage detected