@company-semantics/contracts 0.0.4 → 0.0.6
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 +10 -0
- package/package.json +9 -2
package/README.md
CHANGED
|
@@ -30,3 +30,13 @@ import type { IntentCategory, InsightConfidence } from '@company-semantics/contr
|
|
|
30
30
|
Follows semver:
|
|
31
31
|
- Additive vocabulary → minor bump
|
|
32
32
|
- Renaming or removal → major bump
|
|
33
|
+
|
|
34
|
+
## Releasing
|
|
35
|
+
|
|
36
|
+
Releases are published automatically via GitHub Actions.
|
|
37
|
+
|
|
38
|
+
Steps:
|
|
39
|
+
1. `npm version patch`
|
|
40
|
+
2. `git push origin main --tags`
|
|
41
|
+
|
|
42
|
+
Publishing locally is not supported.
|
package/package.json
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@company-semantics/contracts",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6",
|
|
4
4
|
"private": false,
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/company-semantics/company-semantics-contracts"
|
|
8
|
+
},
|
|
5
9
|
"type": "module",
|
|
6
10
|
"exports": {
|
|
7
11
|
".": {
|
|
@@ -9,7 +13,10 @@
|
|
|
9
13
|
}
|
|
10
14
|
},
|
|
11
15
|
"types": "./index.ts",
|
|
12
|
-
"files": [
|
|
16
|
+
"files": [
|
|
17
|
+
"index.ts",
|
|
18
|
+
"README.md"
|
|
19
|
+
],
|
|
13
20
|
"publishConfig": {
|
|
14
21
|
"access": "public"
|
|
15
22
|
}
|