-
-
Notifications
You must be signed in to change notification settings - Fork 1
Replace local json-pointer implementation with @jsonjoy.com/json-pointer package #43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
387c629
72d6954
36d892b
2a00fb5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,7 @@ | ||
| import {genShallowReader} from '../../msgpack/shallow-read'; | ||
| import {CborEncoder} from '../CborEncoder'; | ||
| import {CborDecoder} from '../CborDecoder'; | ||
| import {Path} from '../../json-pointer'; | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Import as type.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Updated to use type import in commit 2a00fb5. |
||
| import type {Path} from '@jsonjoy.com/json-pointer'; | ||
| import {Writer} from '@jsonjoy.com/util/lib/buffers/Writer'; | ||
|
|
||
| const assetShallowRead = (doc: unknown, path: Path): void => { | ||
|
|
||
This file was deleted.
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| import {JsonPackValue} from '.'; | ||
| import {MsgPackDecoderFast} from './MsgPackDecoderFast'; | ||
| import type {Path} from '../json-pointer'; | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Import as type. |
||
| import type {Path} from '@jsonjoy.com/json-pointer'; | ||
| import type {Reader} from '@jsonjoy.com/util/lib/buffers/Reader'; | ||
|
|
||
| /** | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,7 @@ | ||
| import {genShallowReader} from '../shallow-read'; | ||
| import {MsgPackEncoder} from '../MsgPackEncoder'; | ||
| import {MsgPackDecoder} from '../MsgPackDecoder'; | ||
| import {Path} from '../../json-pointer'; | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Import as type.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Updated to use type import in commit 2a00fb5. |
||
| import type {Path} from '@jsonjoy.com/json-pointer'; | ||
|
|
||
| const assetShallowRead = (doc: unknown, path: Path): void => { | ||
| const encoder = new MsgPackEncoder(); | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| import {Path} from '../json-pointer'; | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Import as type.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Updated to use type import in commit 2a00fb5. |
||
| import type {Path} from '@jsonjoy.com/json-pointer'; | ||
| import {Codegen} from '@jsonjoy.com/util/lib/codegen/Codegen'; | ||
| import type {MsgPackDecoder} from './MsgPackDecoder'; | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Import as type.