Skip to content

Commit befeac9

Browse files
docs: Add READMEs
1 parent 34e235a commit befeac9

File tree

11 files changed

+76
-6
lines changed

11 files changed

+76
-6
lines changed

libs/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kevinmichaelchen/cel-typescript-core",
3-
"version": "0.0.13",
3+
"version": "0.0.14",
44
"type": "module",
55
"description": "TypeScript bindings for the Common Expression Language (CEL) using cel-rust",
66
"repository": {

libs/darwin-arm64/README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# `@kevinmichaelchen/cel-typescript-darwin-arm64`
2+
3+
[![npm version](https://img.shields.io/npm/v/@kevinmichaelchen/cel-typescript-darwin-arm64.svg)](https://www.npmjs.com/package/@kevinmichaelchen/cel-typescript-darwin-arm64)
4+
[![npm downloads](https://img.shields.io/npm/dm/@kevinmichaelchen/cel-typescript-darwin-arm64.svg)](https://www.npmjs.com/package/@kevinmichaelchen/cel-typescript-darwin-arm64)
5+
6+
Native bindings for running [`@kevinmichaelchen/cel-typescript-core`][main] on
7+
macOS ARM64 (Apple Silicon).
8+
9+
[main]: https://www.npmjs.com/package/@kevinmichaelchen/cel-typescript-core
10+
11+
## Documentation
12+
13+
For full documentation and usage examples, please refer to the
14+
[main repository](https://github.com/kevinmichaelchen/cel-typescript).

libs/darwin-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"os": ["darwin"],
55
"cpu": ["arm64"],
66
"main": "cel-typescript.darwin-arm64.node",
7-
"files": ["cel-typescript.darwin-arm64.node"],
7+
"files": ["cel-typescript.darwin-arm64.node", "README.md"],
88
"license": "MIT",
99
"repository": {
1010
"type": "git",

libs/darwin-x64/README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# `@kevinmichaelchen/cel-typescript-darwin-x64`
2+
3+
[![npm version](https://img.shields.io/npm/v/@kevinmichaelchen/cel-typescript-darwin-x64.svg)](https://www.npmjs.com/package/@kevinmichaelchen/cel-typescript-darwin-x64)
4+
[![npm downloads](https://img.shields.io/npm/dm/@kevinmichaelchen/cel-typescript-darwin-x64.svg)](https://www.npmjs.com/package/@kevinmichaelchen/cel-typescript-darwin-x64)
5+
6+
Native bindings for running [`@kevinmichaelchen/cel-typescript-core`][main] on
7+
macOS x64 (Intel).
8+
9+
[main]: https://www.npmjs.com/package/@kevinmichaelchen/cel-typescript-core
10+
11+
## Documentation
12+
13+
For full documentation and usage examples, please refer to the
14+
[main repository](https://github.com/kevinmichaelchen/cel-typescript).

libs/darwin-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"os": ["darwin"],
55
"cpu": ["x64"],
66
"main": "cel-typescript.darwin-x64.node",
7-
"files": ["cel-typescript.darwin-x64.node"],
7+
"files": ["cel-typescript.darwin-x64.node", "README.md"],
88
"license": "MIT",
99
"repository": {
1010
"type": "git",

libs/linux-arm64-gnu/README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# `@kevinmichaelchen/cel-typescript-linux-arm64-gnu`
2+
3+
[![npm version](https://img.shields.io/npm/v/@kevinmichaelchen/cel-typescript-linux-arm64-gnu.svg)](https://www.npmjs.com/package/@kevinmichaelchen/cel-typescript-linux-arm64-gnu)
4+
[![npm downloads](https://img.shields.io/npm/dm/@kevinmichaelchen/cel-typescript-linux-arm64-gnu.svg)](https://www.npmjs.com/package/@kevinmichaelchen/cel-typescript-linux-arm64-gnu)
5+
6+
Native bindings for running [`@kevinmichaelchen/cel-typescript-core`][main] on
7+
Linux ARM64.
8+
9+
[main]: https://www.npmjs.com/package/@kevinmichaelchen/cel-typescript-core
10+
11+
## Documentation
12+
13+
For full documentation and usage examples, please refer to the
14+
[main repository](https://github.com/kevinmichaelchen/cel-typescript).

libs/linux-arm64-gnu/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"os": ["linux"],
55
"cpu": ["arm64"],
66
"main": "cel-typescript.linux-arm64-gnu.node",
7-
"files": ["cel-typescript.linux-arm64-gnu.node"],
7+
"files": ["cel-typescript.linux-arm64-gnu.node", "README.md"],
88
"license": "MIT",
99
"repository": {
1010
"type": "git",

libs/linux-x64-gnu/README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# `@kevinmichaelchen/cel-typescript-linux-x64-gnu`
2+
3+
[![npm version](https://img.shields.io/npm/v/@kevinmichaelchen/cel-typescript-linux-x64-gnu.svg)](https://www.npmjs.com/package/@kevinmichaelchen/cel-typescript-linux-x64-gnu)
4+
[![npm downloads](https://img.shields.io/npm/dm/@kevinmichaelchen/cel-typescript-linux-x64-gnu.svg)](https://www.npmjs.com/package/@kevinmichaelchen/cel-typescript-linux-x64-gnu)
5+
6+
Native bindings for running [`@kevinmichaelchen/cel-typescript-core`][main] on
7+
Linux x64.
8+
9+
[main]: https://www.npmjs.com/package/@kevinmichaelchen/cel-typescript-core
10+
11+
## Documentation
12+
13+
For full documentation and usage examples, please refer to the
14+
[main repository](https://github.com/kevinmichaelchen/cel-typescript).

libs/linux-x64-gnu/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"os": ["linux"],
55
"cpu": ["x64"],
66
"main": "cel-typescript.linux-x64-gnu.node",
7-
"files": ["cel-typescript.linux-x64-gnu.node"],
7+
"files": ["cel-typescript.linux-x64-gnu.node", "README.md"],
88
"license": "MIT",
99
"repository": {
1010
"type": "git",

libs/win32-x64-msvc/README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# `@kevinmichaelchen/cel-typescript-win32-x64-msvc`
2+
3+
[![npm version](https://img.shields.io/npm/v/@kevinmichaelchen/cel-typescript-win32-x64-msvc.svg)](https://www.npmjs.com/package/@kevinmichaelchen/cel-typescript-win32-x64-msvc)
4+
[![npm downloads](https://img.shields.io/npm/dm/@kevinmichaelchen/cel-typescript-win32-x64-msvc.svg)](https://www.npmjs.com/package/@kevinmichaelchen/cel-typescript-win32-x64-msvc)
5+
6+
Native bindings for running [`@kevinmichaelchen/cel-typescript-core`][main] on
7+
Windows x64.
8+
9+
[main]: https://www.npmjs.com/package/@kevinmichaelchen/cel-typescript-core
10+
11+
## Documentation
12+
13+
For full documentation and usage examples, please refer to the
14+
[main repository](https://github.com/kevinmichaelchen/cel-typescript).

0 commit comments

Comments
 (0)