pressship 0.1.12 → 0.1.14
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/README.md +13 -0
- package/assets/web/app.js +7322 -0
- package/assets/web/harness-sdk-icon-mono.svg +33 -0
- package/assets/web/harness-sdk-icon.svg +120 -0
- package/assets/web/index.html +392 -0
- package/assets/web/style.css +7906 -0
- package/dist/cli.js +14 -0
- package/dist/cli.js.map +1 -1
- package/dist/plugin/demo.d.ts +75 -4
- package/dist/plugin/demo.js +520 -31
- package/dist/plugin/demo.js.map +1 -1
- package/dist/utils/paths.d.ts +5 -0
- package/dist/utils/paths.js +15 -0
- package/dist/utils/paths.js.map +1 -1
- package/dist/web/ai-assistance.d.ts +70 -0
- package/dist/web/ai-assistance.js +262 -0
- package/dist/web/ai-assistance.js.map +1 -0
- package/dist/web/index.d.ts +9 -0
- package/dist/web/index.js +34 -0
- package/dist/web/index.js.map +1 -0
- package/dist/web/jobs.d.ts +33 -0
- package/dist/web/jobs.js +155 -0
- package/dist/web/jobs.js.map +1 -0
- package/dist/web/open-url.d.ts +1 -0
- package/dist/web/open-url.js +13 -0
- package/dist/web/open-url.js.map +1 -0
- package/dist/web/plugin-check-state.d.ts +47 -0
- package/dist/web/plugin-check-state.js +107 -0
- package/dist/web/plugin-check-state.js.map +1 -0
- package/dist/web/plugin-check.d.ts +11 -0
- package/dist/web/plugin-check.js +124 -0
- package/dist/web/plugin-check.js.map +1 -0
- package/dist/web/ports.d.ts +2 -0
- package/dist/web/ports.js +38 -0
- package/dist/web/ports.js.map +1 -0
- package/dist/web/registry.d.ts +49 -0
- package/dist/web/registry.js +106 -0
- package/dist/web/registry.js.map +1 -0
- package/dist/web/release.d.ts +87 -0
- package/dist/web/release.js +417 -0
- package/dist/web/release.js.map +1 -0
- package/dist/web/server.d.ts +31 -0
- package/dist/web/server.js +1453 -0
- package/dist/web/server.js.map +1 -0
- package/dist/web/settings.d.ts +36 -0
- package/dist/web/settings.js +72 -0
- package/dist/web/settings.js.map +1 -0
- package/dist/web/version-state.d.ts +28 -0
- package/dist/web/version-state.js +118 -0
- package/dist/web/version-state.js.map +1 -0
- package/dist/wordpress-org/publish.d.ts +1 -0
- package/dist/wordpress-org/publish.js +4 -2
- package/dist/wordpress-org/publish.js.map +1 -1
- package/dist/wordpress-org/submit.d.ts +1 -0
- package/dist/wordpress-org/submit.js +7 -5
- package/dist/wordpress-org/submit.js.map +1 -1
- package/package.json +4 -1
package/README.md
CHANGED
|
@@ -94,6 +94,7 @@ Playwright Chromium is installed automatically the first time browser automation
|
|
|
94
94
|
| `pressship info` | Inspect local plugin metadata or hosted WordPress.org plugin info. |
|
|
95
95
|
| `pressship ls` | List plugins for the saved account or a public WordPress.org profile. |
|
|
96
96
|
| `pressship get` | Checkout or update a WordPress.org plugin SVN working copy. |
|
|
97
|
+
| `pressship studio` | Start Pressship Studio for plugin operations, editing, and Playground previews. |
|
|
97
98
|
| `pressship status` | Read review state from the logged-in developer dashboard. |
|
|
98
99
|
| `pressship version <patch\|minor\|major>` | Bump the plugin header version and readme stable tag together. |
|
|
99
100
|
| `pressship verify` | Run readme validation and Plugin Check without creating a zip. |
|
|
@@ -251,6 +252,18 @@ pressship publish
|
|
|
251
252
|
|
|
252
253
|
When Pressship runs from the SVN checkout root, it treats `trunk/` as the plugin directory, bumps the version there, and routes `publish` to the SVN release flow.
|
|
253
254
|
|
|
255
|
+
## Pressship Studio
|
|
256
|
+
|
|
257
|
+
```bash
|
|
258
|
+
pressship studio
|
|
259
|
+
pressship studio --no-open
|
|
260
|
+
pressship studio --port 9478
|
|
261
|
+
```
|
|
262
|
+
|
|
263
|
+
`studio` starts a localhost-only Pressship Studio workspace. It lists plugins from the saved WordPress.org session, remembers local plugin paths, clones and updates WordPress.org SVN checkouts, shows plugin metadata and readmes, opens local plugins in a VS Code-style editor, streams Playground output into the Studio terminal, previews Playground in an iframe, checks version state, bumps patch/minor/major versions, and runs dry-run-first publish/release flows.
|
|
264
|
+
|
|
265
|
+
By default it binds to `127.0.0.1`, generates a per-run token for mutating API requests, and uses the same local Pressship config directory as the CLI.
|
|
266
|
+
|
|
254
267
|
## Inspecting submission state
|
|
255
268
|
|
|
256
269
|
```bash
|