Skip to content

Commit ac54954

Browse files
committed
feat: support ES modules
BREAKING CHANGE: ESM support is required
1 parent 527498b commit ac54954

15 files changed

+618
-577
lines changed

package.json

+9-8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"name": "jsonref",
33
"version": "0.0.0-development",
44
"description": "Javascript References ($ref) and Pointers library",
5+
"type": "module",
56
"main": "dist/index.js",
67
"typings": "dist/index.d.ts",
78
"directories": {
@@ -49,26 +50,26 @@
4950
},
5051
"homepage": "https://github.com/vivocha/jsonref#readme",
5152
"devDependencies": {
52-
"@commitlint/config-conventional": "^16.2.1",
53-
"@types/chai": "^4.3.0",
53+
"@commitlint/config-conventional": "^17.0.2",
54+
"@types/chai": "^4.3.1",
5455
"@types/chai-as-promised": "^7.1.5",
5556
"@types/chai-spies": "^1.0.3",
56-
"@types/mocha": "^9.1.0",
57+
"@types/mocha": "^9.1.1",
5758
"@types/node": "^16.11.26",
5859
"chai": "^4.3.6",
5960
"chai-as-promised": "^7.1.1",
6061
"chai-spies": "^1.0.0",
6162
"commitizen": "^4.2.4",
62-
"commitlint": "^16.2.1",
63+
"commitlint": "^17.0.2",
6364
"coveralls": "^3.1.1",
6465
"cz-conventional-changelog": "^3.3.0",
65-
"husky": "^7.0.4",
66-
"mocha": "^9.2.1",
67-
"mochawesome": "^7.1.0",
66+
"husky": "^8.0.1",
67+
"mocha": "^10.0.0",
68+
"mochawesome": "^7.1.3",
6869
"nyc": "^15.1.0",
6970
"rimraf": "^3.0.2",
7071
"semantic-release": "^19.0.2",
71-
"typescript": "^4.6.2"
72+
"typescript": "^4.7.3"
7273
},
7374
"engines": {
7475
"node": ">=16.14.0"

src/index.ts

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
import { ParserError, RetrieverError } from './errors';
2-
import * as meta from './meta';
3-
import { resolve as refResolver } from './ref';
1+
import { ParserError, RetrieverError } from './errors.js';
2+
import * as meta from './meta.js';
3+
import { resolve as refResolver } from './ref.js';
44

5-
export * from './errors';
6-
export { getMeta, isAnnotated, isRef, Meta, normalize, normalizeUri, Registry } from './meta';
7-
export * from './patch';
8-
export { resolve as pointer } from './pointer';
9-
export * from './rebase';
5+
export * from './errors.js';
6+
export { getMeta, isAnnotated, isRef, Meta, normalize, normalizeUri, Registry } from './meta.js';
7+
export * from './patch.js';
8+
export { resolve as pointer } from './pointer.js';
9+
export * from './rebase.js';
1010

1111
export type Retriever = (url: string) => Promise<any>;
1212

src/meta.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { escape } from './utils';
1+
import { escape } from './utils.js';
22

33
export interface Registry {
44
[uri: string]: any;
@@ -55,7 +55,7 @@ export function getKey(obj: any): string | number | undefined {
5555
}
5656
return undefined;
5757
} else {
58-
return Object.keys(parent).find(k => parent[k] === obj);
58+
return Object.keys(parent).find((k) => parent[k] === obj);
5959
}
6060
}
6161
export function getById(obj: any, id: string): any {
@@ -74,7 +74,7 @@ export function annotate(obj: any, options: Options): any {
7474
obj[__meta] = {
7575
registry: options.registry || {},
7676
refs: options.refs || new Set(),
77-
root: obj
77+
root: obj,
7878
} as Registry;
7979
obj[__meta].registry[normalizeUri(options.scope)] = obj;
8080
return (function _annotate(obj: any, scope: string): any {
@@ -107,7 +107,7 @@ export function annotate(obj: any, options: Options): any {
107107
registry: meta.registry,
108108
refs: meta.refs,
109109
parent: obj,
110-
root: meta.root
110+
root: meta.root,
111111
};
112112
_annotate(next, `${meta.scope}/${escape(key)}`);
113113
}
@@ -119,7 +119,7 @@ export function annotate(obj: any, options: Options): any {
119119
export function missingRefs(obj: any): string[] {
120120
const meta = getMeta(obj);
121121
const known = new Set(Object.keys(meta.registry));
122-
return [...meta.refs].filter(r => !known.has(r));
122+
return [...meta.refs].filter((r) => !known.has(r));
123123
}
124124
export function normalize(obj: any): any {
125125
if (!isAnnotated(obj)) {

src/patch.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import * as meta from './meta';
2-
import * as pointer from './pointer';
1+
import * as meta from './meta.js';
2+
import * as pointer from './pointer.js';
33

44
export interface JSONPatchOther {
55
op: 'add' | 'replace' | 'test';
@@ -40,8 +40,8 @@ export function diff(src: any, dst: any, path: string = '/'): JSONPatch {
4040
out = out.concat(diff(src[i], dst[i], `${path === '/' ? '' : path}/${i}`));
4141
}
4242
if (src.length > dst.length) {
43-
for(let i = src.length; i > dst.length; i--) {
44-
out.push({ op: 'remove', path: `${path === '/' ? '' : path}/${i-1}` });
43+
for (let i = src.length; i > dst.length; i--) {
44+
out.push({ op: 'remove', path: `${path === '/' ? '' : path}/${i - 1}` });
4545
}
4646
} else if (src.length < dst.length) {
4747
for (let i = src.length; i < dst.length; i++) {

src/pointer.ts

+8-7
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
1-
import * as meta from './meta';
2-
import { unescape } from './utils';
1+
import * as meta from './meta.js';
2+
import { unescape } from './utils.js';
33

44
const PREFIX_RE: RegExp = /^(0|[1-9][0-9]*?)([#]?)$/;
55
const INDEX_RE: RegExp = /-|0|[1-9][0-9]*/;
66

77
export function getPointer(obj: any): string {
88
const p: string[] = [];
9-
let parent: any, current: any = obj;
10-
while (parent = meta.getMeta(current).parent) {
9+
let parent: any,
10+
current: any = obj;
11+
while ((parent = meta.getMeta(current).parent)) {
1112
const frag = meta.getKey(current);
1213
if (!frag) {
1314
throw new Error(`Failed to get key for ${JSON.stringify(current)}`);
@@ -39,7 +40,7 @@ export function resolve(obj: any, path: string): any {
3940
throw new SyntaxError(`Bad prefix ${prefix}`);
4041
} else {
4142
let levels = parseInt(match[1]);
42-
while(levels--) {
43+
while (levels--) {
4344
current = meta.getMeta(current).parent;
4445
if (!current) {
4546
throw new RangeError(`Invalid prefix "${match[1]}"`);
@@ -51,11 +52,11 @@ export function resolve(obj: any, path: string): any {
5152
}
5253
}
5354
}
54-
while(parts.length) {
55+
while (parts.length) {
5556
if (current === null || typeof current !== 'object') {
5657
throw new TypeError(`Invalid type at path`);
5758
}
58-
const part = unescape((parts.shift() as string));
59+
const part = unescape(parts.shift() as string);
5960
if (Array.isArray(current)) {
6061
if (!part.match(INDEX_RE)) {
6162
throw new SyntaxError(`Invalid array index "${part}"`);

src/rebase.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { RebaserError } from './errors';
1+
import { RebaserError } from './errors.js';
22

33
export interface Rebaser {
44
(id: string, obj: any): any;
@@ -28,7 +28,7 @@ export function rebase(id: string, obj: any, rebaser?: Rebaser): any {
2828
const prop = obj[key];
2929
if (prop && typeof prop === 'object') {
3030
if (!Array.isArray(prop)) {
31-
if (!parsedProps.find(p => p === prop)) {
31+
if (!parsedProps.find((p) => p === prop)) {
3232
parsedProps.push(prop);
3333
findAndRebase(prop);
3434
}

src/ref.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import * as meta from './meta';
2-
import * as pointer from './pointer';
1+
import * as meta from './meta.js';
2+
import * as pointer from './pointer.js';
33

44
const RELATIVE_RE: RegExp = /^#(?:0|[1-9][0-9]*?)(?:$|\/)/;
55

test/ts/index.test.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import * as chai from 'chai';
2-
import * as chaiAsPromised from 'chai-as-promised';
3-
import * as spies from 'chai-spies';
4-
import * as jsonref from '../../dist/index';
1+
import chai from 'chai';
2+
import chaiAsPromised from 'chai-as-promised';
3+
import spies from 'chai-spies';
4+
import * as jsonref from '../../dist/index.js';
55

66
chai.use(spies);
77
chai.use(chaiAsPromised);
@@ -381,7 +381,7 @@ describe('jsonref', function () {
381381
});
382382
it('should throw if path is not a string', function () {
383383
(function () {
384-
jsonref.pointer({}, (1 as any) as string);
384+
jsonref.pointer({}, 1 as any as string);
385385
}.should.throw(TypeError, /Bad path/));
386386
});
387387
it('should throw if path contains parts pointing to scalars', function () {

0 commit comments

Comments
 (0)