@rljson/rljson 0.0.10 → 0.0.11
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.contributors.md +1 -1
- package/dist/README.contributors.md +1 -1
- package/dist/rljson.d.ts +1 -0
- package/dist/rljson.js +12 -0
- package/package.json +1 -1
package/README.contributors.md
CHANGED
|
@@ -158,7 +158,7 @@ Please replace `Commit Message` in the next command by your commit message.
|
|
|
158
158
|
It will also used for branch name and pull request
|
|
159
159
|
|
|
160
160
|
```bash
|
|
161
|
-
export MESSAGE="Add
|
|
161
|
+
export MESSAGE="Add simple example" && \
|
|
162
162
|
export BRANCH=`echo "$MESSAGE" | tr '[:upper:]' '[:lower:]' | sed 's/[^a-z0-9_]/_/g'` &&\
|
|
163
163
|
git checkout -b $BRANCH
|
|
164
164
|
```
|
|
@@ -158,7 +158,7 @@ Please replace `Commit Message` in the next command by your commit message.
|
|
|
158
158
|
It will also used for branch name and pull request
|
|
159
159
|
|
|
160
160
|
```bash
|
|
161
|
-
export MESSAGE="Add
|
|
161
|
+
export MESSAGE="Add simple example" && \
|
|
162
162
|
export BRANCH=`echo "$MESSAGE" | tr '[:upper:]' '[:lower:]' | sed 's/[^a-z0-9_]/_/g'` &&\
|
|
163
163
|
git checkout -b $BRANCH
|
|
164
164
|
```
|
package/dist/rljson.d.ts
CHANGED
|
@@ -166,6 +166,7 @@ export interface Rljson extends Json {
|
|
|
166
166
|
[tableId: TableName]: TableType | string;
|
|
167
167
|
}
|
|
168
168
|
export declare const exampleRljson: () => Rljson;
|
|
169
|
+
export declare const exampleBinary: () => Rljson;
|
|
169
170
|
export declare const exampleRljsonEmpty: () => Rljson;
|
|
170
171
|
export declare const exampleRljsonWithErrors: () => Rljson;
|
|
171
172
|
export declare const exampleRljsonWithMultipleRows: () => Rljson;
|
package/dist/rljson.js
CHANGED
|
@@ -6,6 +6,17 @@ const exampleRljson = () => ({
|
|
|
6
6
|
_data: [exampleJsonObject()]
|
|
7
7
|
}
|
|
8
8
|
});
|
|
9
|
+
const exampleBinary = () => ({
|
|
10
|
+
table: {
|
|
11
|
+
_type: "properties",
|
|
12
|
+
_data: [
|
|
13
|
+
{ a: 0, b: 0 },
|
|
14
|
+
{ a: 0, b: 1 },
|
|
15
|
+
{ a: 1, b: 0 },
|
|
16
|
+
{ a: 1, b: 1 }
|
|
17
|
+
]
|
|
18
|
+
}
|
|
19
|
+
});
|
|
9
20
|
const exampleRljsonEmpty = () => ({});
|
|
10
21
|
const exampleRljsonWithErrors = () => ({
|
|
11
22
|
brok$en: {
|
|
@@ -42,6 +53,7 @@ const exampleRljsonWithMultipleRows = () => ({
|
|
|
42
53
|
}
|
|
43
54
|
});
|
|
44
55
|
export {
|
|
56
|
+
exampleBinary,
|
|
45
57
|
exampleRljson,
|
|
46
58
|
exampleRljsonEmpty,
|
|
47
59
|
exampleRljsonWithErrors,
|