(name: string)
| 106 | } |
| 107 | |
| 108 | export function fixName(name: string): string { |
| 109 | name = name |
| 110 | .replace(/\//g, '_') |
| 111 | .replace(/-/g, '_') |
| 112 | .replace(/@/g, '') |
| 113 | .replace(/_\w/g, (m) => m[1].toUpperCase()); |
| 114 | |
| 115 | return name.charAt(0).toUpperCase() + name.slice(1); |
| 116 | } |
| 117 | |
| 118 | export function printPlugins( |
| 119 | plugins: Plugin[], |