()
| 142 | } |
| 143 | |
| 144 | async run() { |
| 145 | const codemods = await this.createCodemods() |
| 146 | codemods.overwriteExisting = this.force === true |
| 147 | await codemods.makeUsingStub( |
| 148 | stubsRoot, |
| 149 | this.stubPath, |
| 150 | { |
| 151 | flags: this.parsed.flags, |
| 152 | actions: this.actions?.map((action) => string.camelCase(action)), |
| 153 | entity: this.app.generators.createEntity(this.name), |
| 154 | singular: this.singular, |
| 155 | }, |
| 156 | { |
| 157 | contentsFromFile: this.contentsFrom, |
| 158 | } |
| 159 | ) |
| 160 | } |
| 161 | } |
nothing calls this directly
no test coverage detected