Open hagenburger opened 6 years ago
The current way to add a new command (Processing Instruction) <?my-command?> is:
<?my-command?>
config.commands['my-command'] = () => 'return value'
This should be refactored into:
config.commands.add('my-command', () => 'return value')
Refactor command interface
The current way to add a new command (Processing Instruction)
<?my-command?>
is:This should be refactored into: