tty-assert 0.1.0 → 0.1.2

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.
Files changed (2) hide show
  1. package/README.md +3 -13
  2. package/package.json +4 -2
package/README.md CHANGED
@@ -135,18 +135,8 @@ pnpm format
135
135
 
136
136
  ---
137
137
 
138
- ## Git history
138
+ ## Releasing
139
139
 
140
- This repository was bootstrapped from the [Doughnut](https://github.com/odde/doughnut) monorepo with history for `packages/tty-assert` and the earlier `e2e_test/config/tty-assert-staging/` tree preserved (paths rewritten to the repo root). To reproduce a fresh extract from an up-to-date clone of Doughnut:
140
+ Tagged **`v*`** pushes run **`.github/workflows/release.yml`**, which lint-checks, tests, builds, and publishes to **npm** (Trusted Publishing / OIDC). Full steps, changelog format, and troubleshooting: **[docs/release.md](docs/release.md)**.
141
141
 
142
- ```bash
143
- git clone <doughnut-url> tty-assert-work
144
- cd tty-assert-work
145
- git filter-repo \
146
- --path packages/tty-assert/ \
147
- --path e2e_test/config/tty-assert-staging/ \
148
- --path-rename packages/tty-assert/: \
149
- --path-rename e2e_test/config/tty-assert-staging/:
150
- ```
151
-
152
- Then add this repository as `origin` and push `main`.
142
+ ---
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tty-assert",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "PTY transcript assertions: ANSI strip, xterm replay, and explicit search surfaces for tests",
5
5
  "keywords": [
6
6
  "pty",
@@ -55,7 +55,9 @@
55
55
  "LICENSE"
56
56
  ],
57
57
  "pnpm": {
58
- "onlyBuiltDependencies": ["canvas"],
58
+ "onlyBuiltDependencies": [
59
+ "canvas"
60
+ ],
59
61
  "overrides": {
60
62
  "canvas": "3.2.3"
61
63
  }