(plugins: FrameworkConfiguration)
| 142 | } |
| 143 | |
| 144 | function assertProcessed(plugins: FrameworkConfiguration) { |
| 145 | if (plugins.processed) { |
| 146 | throw new Error('This config instance has already been applied. To load more plugins or global resources, create a new FrameworkConfiguration instance.'); |
| 147 | } |
| 148 | } |
| 149 | |
| 150 | function invalidConfigMsg(cfg: any, type: string) { |
| 151 | return `Invalid ${type} [${cfg}], ${type} must be specified as functions or relative module IDs.`; |
no outgoing calls
no test coverage detected
searching dependent graphs…