pressship 0.1.14 → 0.2.0
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 +9 -6
- package/assets/web/app.js +1276 -79
- package/assets/web/style.css +663 -79
- package/composer.json +3 -3
- package/dist/checks/plugin-check.d.ts +1 -0
- package/dist/checks/plugin-check.js +72 -1
- package/dist/checks/plugin-check.js.map +1 -1
- package/dist/package/archive.d.ts +12 -0
- package/dist/package/archive.js +44 -6
- package/dist/package/archive.js.map +1 -1
- package/dist/package/ignore.d.ts +18 -0
- package/dist/package/ignore.js +156 -8
- package/dist/package/ignore.js.map +1 -1
- package/dist/svn/release.js +105 -8
- package/dist/svn/release.js.map +1 -1
- package/dist/ui.d.ts +1 -0
- package/dist/ui.js +76 -0
- package/dist/ui.js.map +1 -1
- package/dist/web/index.js +1 -0
- package/dist/web/index.js.map +1 -1
- package/dist/web/server.js +427 -26
- package/dist/web/server.js.map +1 -1
- package/dist/wordpress-org/submit.js +4 -2
- package/dist/wordpress-org/submit.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
<a href="https://www.npmjs.com/package/pressship"><img alt="npm" src="https://img.shields.io/npm/v/pressship?color=3858e9&logo=npm&logoColor=white&style=flat-square" /></a>
|
|
17
17
|
<a href="https://wordpress.org/plugins/developers/"><img alt="WordPress.org" src="https://img.shields.io/badge/WordPress.org-plugin%20directory-21759b?logo=wordpress&logoColor=white&style=flat-square" /></a>
|
|
18
18
|
<a href="LICENSE"><img alt="License: MIT" src="https://img.shields.io/badge/license-MIT-3858e9?style=flat-square" /></a>
|
|
19
|
-
<a href="https://github.com/
|
|
19
|
+
<a href="https://github.com/Automattic/pressship"><img alt="GitHub stars" src="https://img.shields.io/github/stars/Automattic/pressship?style=flat-square&logo=github&color=1e293b" /></a>
|
|
20
20
|
</p>
|
|
21
21
|
|
|
22
22
|
<p align="center">
|
|
@@ -70,6 +70,7 @@ That's it. Pressship handles browser-based login, packaging, readme validation,
|
|
|
70
70
|
- **Submission state inspector** — reads the logged-in developer page to surface review status, slug, reupload availability, and Plugin Check links.
|
|
71
71
|
- **SVN release workflow** — handles checkout, trunk sync, tag creation, and commit.
|
|
72
72
|
- **WordPress Playground demos** — boot any local path or hosted slug in Playground using the plugin's own WP/PHP requirements.
|
|
73
|
+
- **Pressship Studio** — a local VS Code-style workspace with file tabs, Playground previews, AI assistance, release management, package-size checks, and CLI command hints in the terminal.
|
|
73
74
|
- **`.pressshipignore` + glob ignores** — sensible defaults, easy per-command overrides.
|
|
74
75
|
- **Agent skill included** — a Pressship publishing skill for coding agents (Codex, Claude Code, etc.).
|
|
75
76
|
- **Beautiful terminal UX** — colored output, progress indicators, structured findings.
|
|
@@ -115,7 +116,7 @@ pressship <command> --help
|
|
|
115
116
|
Pressship can also be installed as a WP-CLI package:
|
|
116
117
|
|
|
117
118
|
```bash
|
|
118
|
-
wp package install
|
|
119
|
+
wp package install Automattic/pressship
|
|
119
120
|
```
|
|
120
121
|
|
|
121
122
|
That adds a `wp ship` command:
|
|
@@ -260,7 +261,9 @@ pressship studio --no-open
|
|
|
260
261
|
pressship studio --port 9478
|
|
261
262
|
```
|
|
262
263
|
|
|
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
|
+
`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 package size, manages `.pressshipignore`, checks version state, bumps patch/minor/major versions, and runs dry-run-first publish/release flows.
|
|
265
|
+
|
|
266
|
+
Studio also prints the equivalent `npx pressship ...` command in its terminal for CLI-backed actions such as Playground, Plugin Check, package size, version bumps, and publish dry runs.
|
|
264
267
|
|
|
265
268
|
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
269
|
|
|
@@ -406,13 +409,13 @@ pressship release ./my-plugin --no-install-svn
|
|
|
406
409
|
Pressship ships with a publishing skill for coding agents (Codex, Claude Code, etc.). It teaches your agent to publish WordPress plugins cautiously — dry-run first, state-aware, with a final review step before any upload.
|
|
407
410
|
|
|
408
411
|
```bash
|
|
409
|
-
npx skills add
|
|
412
|
+
npx skills add Automattic/pressship --skill wordpress-plugin-publish -a codex
|
|
410
413
|
```
|
|
411
414
|
|
|
412
415
|
Replace `codex` with another supported agent name, e.g. `claude-code`. List available skills first:
|
|
413
416
|
|
|
414
417
|
```bash
|
|
415
|
-
npx skills add
|
|
418
|
+
npx skills add Automattic/pressship --list
|
|
416
419
|
```
|
|
417
420
|
|
|
418
421
|
## Configuration
|
|
@@ -552,7 +555,7 @@ Pressship is built on the work of many people and projects:
|
|
|
552
555
|
|
|
553
556
|
## Disclaimer
|
|
554
557
|
|
|
555
|
-
**Pressship is an
|
|
558
|
+
**Pressship is an Automattic-maintained community project.** It is currently unofficial tooling for WordPress.org plugin publishing workflows, not an official WordPress.org service or a WordPress Foundation project. WordPress® is a trademark of the WordPress Foundation.
|
|
556
559
|
|
|
557
560
|
## License
|
|
558
561
|
|