Skip to content

Commit c4fcbf8

Browse files
authored
Merge pull request #582 from streamich/next
next major release
2 parents dcf1086 + 02c58ab commit c4fcbf8

File tree

718 files changed

+677
-42634
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

718 files changed

+677
-42634
lines changed

.github/workflows/pr.yml

Lines changed: 3 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Node.js CI
22

33
on:
44
pull_request:
5-
branches: [ master ]
5+
branches: [ master, next ]
66

77
concurrency:
88
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
@@ -36,7 +36,7 @@ jobs:
3636
node-version: ${{ matrix.node-version }}
3737
cache: yarn
3838
- run: yarn install --frozen-lockfile
39-
- run: yarn build
39+
- run: yarn build:all
4040
- run: yarn lint
4141
- run: yarn prettier:check
4242
- run: yarn test:cli:pointer
@@ -45,17 +45,4 @@ jobs:
4545
- run: yarn demo:json-patch
4646
- run: yarn demo:json-pointer
4747
- run: yarn typedoc
48-
e2e-rx-rpc:
49-
runs-on: ubuntu-latest
50-
strategy:
51-
matrix:
52-
node-version: [20.x]
53-
steps:
54-
- uses: actions/checkout@v3
55-
- name: Use Node.js ${{ matrix.node-version }}
56-
uses: actions/setup-node@v3
57-
with:
58-
node-version: ${{ matrix.node-version }}
59-
cache: yarn
60-
- run: yarn install --frozen-lockfile
61-
- run: yarn test:reactive-rpc
48+

.github/workflows/release.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Node.js CI
22

33
on:
44
push:
5-
branches: [ master ]
5+
branches: [ master, next ]
66

77
jobs:
88
release:
@@ -29,7 +29,6 @@ jobs:
2929
- run: yarn test:cli:pack
3030
- run: yarn demo:json-patch
3131
- run: yarn demo:json-pointer
32-
- run: yarn test:reactive-rpc
3332
- name: Semantic Release
3433
uses: cycjimmy/semantic-release-action@v4
3534
env:

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ merging of changes in JSON data models, avoiding conflicts between replicas.
4646
- Very fast binary tree (Radix, AVL, Red-black*, Splay) implementations in JavaScript.
4747
- Very fast JSON Patch (and JSON Pointer) implementation in JavaScript, including many non-standard operations, and JSON Predicate implementation.
4848
- Very fast JSON Expression implementation in JavaScript.
49-
- JSON Reactive RPC protocol (RPC with server push) implementation, for real-time collaborative apps.
5049

5150

5251
[json-joy]: https://jsonjoy.com

bin/jj.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/usr/bin/env node
22

33
// eslint-disable-next-line import/no-unassigned-import
4-
require("../es2020/json-cli/jj");
4+
require("../lib/json-cli/jj");

bin/json-pack-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/usr/bin/env node
22

33
// eslint-disable-next-line import/no-unassigned-import
4-
require("../es2020/json-cli/json-pack-test");
4+
require("../lib/json-cli/json-pack-test");

bin/json-pack.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/usr/bin/env node
22

33
// eslint-disable-next-line import/no-unassigned-import
4-
require("../es2020/json-cli/json-pack");
4+
require("../lib/json-cli/json-pack");

bin/json-patch-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/usr/bin/env node
22

33
// eslint-disable-next-line import/no-unassigned-import
4-
require("../es2020/json-cli/json-patch-test");
4+
require("../lib/json-cli/json-patch-test");

bin/json-patch.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/usr/bin/env node
22

33
// eslint-disable-next-line import/no-unassigned-import
4-
require("../es2020/json-cli/json-patch");
4+
require("../lib/json-cli/json-patch");

bin/json-pointer-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/usr/bin/env node
22

33
// eslint-disable-next-line import/no-unassigned-import
4-
require("../es2020/json-cli/json-pointer-test");
4+
require("../lib/json-cli/json-pointer-test");

bin/json-pointer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/usr/bin/env node
22

33
// eslint-disable-next-line import/no-unassigned-import
4-
require("../es2020/json-cli/json-pointer");
4+
require("../lib/json-cli/json-pointer");

0 commit comments

Comments
 (0)