@local-labs-jpollock/local-cli 0.0.4 → 0.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@local-labs-jpollock/local-cli",
3
- "version": "0.0.4",
3
+ "version": "0.0.6",
4
4
  "description": "Command-line interface for Local WordPress development",
5
5
  "main": "lib/index.js",
6
6
  "bin": {
package/skill/SKILL.md CHANGED
@@ -47,11 +47,17 @@ lwp wp <site> search-replace 'old' 'new' --dry-run
47
47
 
48
48
  **Plugin-provided CLI commands** (e.g., `wp migrate`):
49
49
 
50
- By default, plugins are skipped for safety. Use `--with-plugins` to load them:
50
+ By default, plugins are skipped for safety. Use `--with-plugins` to load them.
51
+
52
+ **Important:** Options must come BEFORE the site name:
51
53
 
52
54
  ```bash
53
- lwp wp <site> --with-plugins migrate push <target>
54
- lwp wp <site> --with-plugins migrate pull <source>
55
+ # Correct - option before site:
56
+ lwp wp --with-plugins <site> migrate push <target>
57
+ lwp wp --with-plugins <site> migrate pull <source>
58
+
59
+ # Wrong - option will be passed to WP-CLI:
60
+ lwp wp <site> --with-plugins migrate push # DON'T DO THIS
55
61
  ```
56
62
 
57
63
  ### Database Operations