Skip to content

Commit 62ba930

Browse files
committed
one more
1 parent 75c526f commit 62ba930

2 files changed

Lines changed: 14 additions & 1 deletion

File tree

packages/core/src/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1283,7 +1283,7 @@ export abstract class Client<O extends ClientOptions = ClientOptions> {
12831283

12841284
// A session is updated and that session update is sent in only one of the two following scenarios:
12851285
// 1. Session with non terminal status and 0 errors + an error occurred -> Will set error count to 1 and send update
1286-
// 2. Session with non terminal status and 1 error + a crash occurred -> Will set status crashed and send update
1286+
// 2. Session with non terminal status and 1 error + a crash occurred -> Will set status unhandled and send update
12871287
const sessionNonTerminal = session.status === 'ok';
12881288
const shouldUpdateAndSend = (sessionNonTerminal && session.errors === 0) || (sessionNonTerminal && unhandled);
12891289

paseo.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"metadataGeneration": {
3+
"branchName": {
4+
"instructions": "Prefix branches with ms/"
5+
},
6+
"commitMessage": {
7+
"instructions": "Use Conventional Commits with a scope, usually the package name"
8+
},
9+
"pullRequest": {
10+
"instructions": "Don't be too wordy. Explain more the why behind the change, not the how that can be seen anyway in the diff"
11+
}
12+
}
13+
}

0 commit comments

Comments
 (0)