Skip to content

Commit b6762e2

Browse files
committed
npm registry alpha tag in github publish pipeline, install instructions with @Alpha tag and link to old doc in README's, keywords fild in package.json's.
1 parent 0f22aee commit b6762e2

File tree

6 files changed

+37
-7
lines changed

6 files changed

+37
-7
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ jobs:
2121
- name: Publish immudb-node-grpcjs
2222
run: |
2323
cd immudb-node-grpcjs
24-
npm publish --access public
24+
npm publish --access public --tag alpha
2525
- name: Publish immudb-node-pbjs
2626
run: |
2727
cd immudb-node-pbjs
28-
npm publish --access public
28+
npm publish --access public --tag alpha
2929
- name: Publish immudb-node
3030
run: |
3131
cd immudb-node
32-
npm publish --access public
32+
npm publish --access public --tag alpha
3333

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,13 @@
88

99
[immudb]: https://immudb.io/
1010

11-
# Mono repository
11+
# Old ImmuDb client
12+
13+
**[Old version of ImmuDb node client](https://github.com/codenotary/immudb-node/releases/tag/v1.1.1)**
14+
15+
# ImmuDb node client (Alpha) mono repository
16+
17+
1218

1319
If you don't plan developing this project, you will be only interested with:
1420

immudb-node-grpcjs/package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@
88
"directory": "immudb-node-grpcjs"
99
},
1010
"description": "ImmuDb schema.proto grpc node bindings.",
11+
"keywords": [
12+
"immudb",
13+
"grpc",
14+
"bindings"
15+
],
1116
"type": "module",
1217
"main": "./dist/main.js",
1318
"files": [

immudb-node-pbjs/package.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,12 @@
77
"url": "https://github.com/codenotary/immudb-node.git",
88
"directory": "immudb-node-pbjs"
99
},
10-
"description": "ImmuDb schema.proto protobufers node bindings.",
10+
"description": "ImmuDb schema.proto protobuf node bindings.",
11+
"keywords": [
12+
"immudb",
13+
"protobuf",
14+
"bindings"
15+
],
1116
"type": "module",
1217
"main": "./src/main.js",
1318
"types": "src/main.d.ts",

immudb-node/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
# Install & use
44

5-
To include client in your code, do:
5+
To include (alpha) client in your code, do:
66

77
```sh
8-
npm install immudb-node
8+
npm install immudb-node@alpha
99
```
1010

1111
Then use (see detailed examples in [showcases](../immudb-node-showcase/)):

immudb-node/package.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,20 @@
88
"directory": "immudb-node"
99
},
1010
"description": "ImmuDb node client.",
11+
"keywords": [
12+
"immudb",
13+
"database",
14+
"sql",
15+
"key",
16+
"value",
17+
"store",
18+
"immutable",
19+
"merkle",
20+
"cryptography",
21+
"merkle-proof",
22+
"verifiable",
23+
"tamperproof"
24+
],
1125
"type": "module",
1226
"main": "./dist/index.js",
1327
"files": [

0 commit comments

Comments
 (0)