Skip to content

Commit 393cc70

Browse files
committed
fix: fix dep check
1 parent 27a789f commit 393cc70

File tree

7 files changed

+374
-63
lines changed

7 files changed

+374
-63
lines changed

bin/cbor2comment

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env node
22
'use strict'
33

4-
const cbor = require('../src/cbor')
4+
const cbor = require('../src')
55
const utils = require('../src/utils')
66
const pkg = require('../package.json')
77

bin/cbor2diag

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env node
22
'use strict'
33

4-
const cbor = require('../src/cbor')
4+
const cbor = require('../src')
55
const utils = require('../src/utils')
66
const pkg = require('../package.json')
77

bin/cbor2json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/* eslint-disable no-console */
33
'use strict'
44

5-
const cbor = require('../src/cbor')
5+
const cbor = require('../src')
66
const utils = require('../src/utils')
77
const pkg = require('../package.json')
88

bin/json2cbor

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env node
22
'use strict'
33

4-
const cbor = require('../src/cbor')
4+
const cbor = require('../src')
55
const utils = require('../src/utils')
66
const pkg = require('../package.json')
77

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
},
4444
"devDependencies": {
4545
"aegir": "^21.4.5",
46+
"ava": "^3.5.1",
4647
"benchmark": "^2.1.0",
4748
"budo": "^11.2.0",
4849
"cbor": "^4.0.0",

test/simple.ava.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use strict'
22

33
const test = require('ava')
4-
const cbor = require('../src/cbor')
4+
const cbor = require('../src')
55
const constants = require('../src/constants')
66

77
test('create', t => {

0 commit comments

Comments
 (0)