You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following is from the original readme. Can be used for specs & documentation when the time comes.
Note: This might end up being its own project, but a simple version can be done with npm processes.
Gizmo CLI
Gizmo comes with a wp-cli extension that is inspired by Laravel's artisan cli. the root command is wp gizmo. These commands are not included in your bundled plugin by default. with wp-gizmo-cli, you can rapidly scaffold new plugin components (wp gizmo make:compoment), tests (wp gizmo make:test --component=NAME), and even cli commands (wp gizmo make:cli) for use in your dev environment
Including CLI commands in your plugin
WP Gizmo's cli commands can be extended and included in your bundled plugin. You can create new cli commands for your plugin from the command line: wp gizmo make:cli --bundled=TRUE. If you choose to extend gizmo's wpcli commands with additional commands, add the filepath to your config.json. During the bundle process, the root command will be rewritten to the name of your plugin (so in your dev environment, you run wp gizmo refresh-opengraph-metadata, but in your bundled plugin called 1440, you'd run wp 1440 refresh-opengraph-metadata).
The text was updated successfully, but these errors were encountered:
Description
The following is from the original readme. Can be used for specs & documentation when the time comes.
Note: This might end up being its own project, but a simple version can be done with npm processes.
The text was updated successfully, but these errors were encountered: