Skip to content

Commit b23322e

Browse files
authored
Fix wrong import path in CLI
CLI seems to have been broken by db03af3. Instead of requiring the module by path, this just imports the main module.
1 parent f427c1b commit b23322e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/jsondiffpatch

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

3-
const jsondiffpatch = require('../build/jsondiffpatch.cjs');
3+
const jsondiffpatch = require('..');
44

55
const fs = require('fs');
66

0 commit comments

Comments
 (0)