Skip to content

Commit d2c24a8

Browse files
committed
fix: 🐛 update dependencies
1 parent 9ffbdd0 commit d2c24a8

File tree

5 files changed

+249
-249
lines changed

5 files changed

+249
-249
lines changed

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,9 @@
5656
"tslib": "2"
5757
},
5858
"dependencies": {
59-
"@jsonjoy.com/json-pointer": "^1.0.0",
60-
"@jsonjoy.com/util": "^1.6.0"
59+
"@jsonjoy.com/codegen": "^1.0.0",
60+
"@jsonjoy.com/json-pointer": "^1.0.2",
61+
"@jsonjoy.com/util": "^1.9.0"
6162
},
6263
"devDependencies": {
6364
"@biomejs/biome": "^1.9.4",

src/codegen.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import * as util from './util';
2-
import {Codegen} from '@jsonjoy.com/util/lib/codegen/Codegen';
2+
import {Codegen} from '@jsonjoy.com/codegen/lib/Codegen';
33
import {type ExpressionResult, Literal} from './codegen-steps';
44
import {createEvaluate} from './createEvaluate';
5-
import type {JavaScript} from '@jsonjoy.com/util/lib/codegen';
65
import {Vars} from './Vars';
6+
import type {JavaScript} from '@jsonjoy.com/codegen';
77
import type * as types from './types';
88

99
export type JsonExpressionFn = (vars: types.JsonExpressionExecutionContext['vars']) => unknown;

src/operators/patch.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
import {Expression, type ExpressionResult} from '../codegen-steps';
2-
import type * as types from '../types';
32
import {toPath} from '@jsonjoy.com/json-pointer/lib/util';
4-
import type {Path} from '@jsonjoy.com/json-pointer/lib/types';
5-
import {type JavaScript, type JavaScriptLinked, compileClosure} from '@jsonjoy.com/util/lib/codegen';
3+
import {compileClosure} from '@jsonjoy.com/codegen/lib/compile';
64
import {$findRef} from '@jsonjoy.com/json-pointer/lib/codegen/findRef';
75
import {find} from '@jsonjoy.com/json-pointer/lib/find';
6+
import type * as types from '../types';
7+
import type {Path} from '@jsonjoy.com/json-pointer/lib/types';
8+
import type {JavaScript, JavaScriptLinked} from '@jsonjoy.com/codegen';
89

910
const validateAddOperandCount = (count: number) => {
1011
if (count < 3) {

src/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type {JavaScript} from '@jsonjoy.com/util/lib/codegen';
1+
import type {JavaScript} from '@jsonjoy.com/codegen';
22
import type {Vars} from './Vars';
33
import type {ExpressionResult} from './codegen-steps';
44
import type {JsonExpressionFn} from './codegen';

0 commit comments

Comments
 (0)