@pinet/pinet-core 0.2.2 → 0.2.4
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 +17 -11
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,20 +1,26 @@
|
|
|
1
1
|
# @pinet/pinet-core
|
|
2
2
|
|
|
3
|
-
Runtime
|
|
3
|
+
Runtime helpers for Pinet that work independently of Slack.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
## What it does
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
- durable Pinet read result text/detail formatting
|
|
9
|
-
- scheduled wake-up time parsing and thread ID helpers
|
|
7
|
+
This package provides:
|
|
10
8
|
|
|
11
|
-
|
|
9
|
+
- output option normalisation (defaults to `cli`, accepts `json` or `full`)
|
|
10
|
+
- durable read result formatting
|
|
11
|
+
- scheduled wake-up time parsing
|
|
12
|
+
- thread ID helpers
|
|
12
13
|
|
|
13
|
-
|
|
14
|
+
## How it works
|
|
15
|
+
|
|
16
|
+
The package exports helpers that `@pinet/slack-bridge` uses internally. These functions handle Pinet operations without depending on Slack adapters.
|
|
17
|
+
|
|
18
|
+
The helpers live behind package exports. Future changes can move functionality one boundary at a time.
|
|
19
|
+
|
|
20
|
+
See the design proposal in `plans/slack-split-proposal.md`.
|
|
14
21
|
|
|
15
22
|
## Publishing
|
|
16
23
|
|
|
17
|
-
This package is
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
bump versions without explicit maintainer release approval.
|
|
24
|
+
This package is part of the npm publish set in [`../plans/npm-publish.md`](../plans/npm-publish.md).
|
|
25
|
+
|
|
26
|
+
Do not publish, tag, or bump versions without maintainer approval. Use the GitHub Actions workflow for validation.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pinet/pinet-core",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Pinet runtime core for pi — broker/follower orchestration and mesh tooling",
|
|
6
6
|
"author": "Will Porcellini <5994936+gugu91@users.noreply.github.com>",
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
"test": "vitest run *.test.ts"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@pinet/broker-core": "0.2.
|
|
39
|
-
"@pinet/transport-core": "0.2.
|
|
38
|
+
"@pinet/broker-core": "0.2.4",
|
|
39
|
+
"@pinet/transport-core": "0.2.4"
|
|
40
40
|
},
|
|
41
41
|
"types": "./dist/index.d.ts"
|
|
42
42
|
}
|