Skip to content

Commit ac91299

Browse files
committed
chore: release-please config
1 parent 83c9d34 commit ac91299

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

.github/workflows/release-please.yml

-2
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,3 @@ jobs:
1111
with:
1212
release-type: node
1313
package-name: release-please-action
14-
path: packages/ohm-js
15-
bootstrap-sha: 929aa5c6d7677f0ebbfe16d21782697371056bb2

.release-please-manifest.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"packages/ohm-js": "17.0.4"
3+
}

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ Ohm has two tools to help you debug grammars: a text trace, and a graphical visu
163163

164164
You can [try the visualizer online](https://ohmjs.org/editor).
165165

166-
To see the text trace for a grammar `g`, just use the [`g.trace()`](./doc/api-reference.md#trace)
166+
To see the text trace for a grammar `g`, just use the [`g.trace()`](doc/api-reference.md#trace)
167167
method instead of `g.match`. It takes the same arguments, but instead of returning a MatchResult
168168
object, it returns a Trace object — calling its `toString` method returns a string describing
169169
all of the decisions the parser made when trying to match the input. For example, here is the
@@ -203,4 +203,4 @@ our [suggestions for publishing grammars](./doc/publishing-grammars.md).
203203
## Contributing to Ohm
204204

205205
Interested in contributing to Ohm? Please read [CONTRIBUTING.md](./CONTRIBUTING.md)
206-
and the [Ohm Contributor Guide](docs/contributing.md).
206+
and the [Ohm Contributor Guide](doc/contributing.md).

release-please-config.json

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"bootstrap-sha": "929aa5c6d7677f0ebbfe16d21782697371056bb2",
3+
"packages": {
4+
"packages/ohm-js": {
5+
"release-type": "node",
6+
"draft-pull-request": true
7+
}
8+
},
9+
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
10+
}

0 commit comments

Comments
 (0)