(rawArgs)
| 63 | ] |
| 64 | |
| 65 | function parseArgs(rawArgs) { |
| 66 | const flags = new Set(rawArgs.trim().split(/\s+/).filter(Boolean)) |
| 67 | return { |
| 68 | commands: flags.has('--commands') || flags.has('commands'), |
| 69 | json: flags.has('--json') || flags.has('json'), |
| 70 | } |
| 71 | } |
| 72 | |
| 73 | function getBuildFeatureStates() { |
| 74 | return { |