command returns the entrypoint command for the maker tool.
()
| 536 | // MakerNPMStartEntrypoint implements the entrypoint capability for the maker tool. |
| 537 | type MakerNPMStartEntrypoint struct{} |
| 538 | |
| 539 | // command returns the entrypoint command for the maker tool. |
| 540 | func (e *MakerNPMStartEntrypoint) command() []string { |
| 541 | return []string{"npm", "run", "start"} |
| 542 | } |
| 543 |