@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/addon-dist/package.json +1 -1
- package/lib/analytics.d.ts +55 -0
- package/lib/analytics.js +447 -0
- package/lib/index.js +112 -12
- package/package.json +1 -1
- package/skill/SKILL.md +9 -3
package/package.json
CHANGED
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
|
-
|
|
54
|
-
lwp wp
|
|
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
|