Skip to content

Commit

Permalink
bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jamestalmage committed Apr 7, 2016
1 parent a8126fe commit 5be6414
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions package.json
Expand Up @@ -30,15 +30,15 @@
],
"dependencies": {
"inline-source-map-comment": "^1.0.5",
"recast": "^0.10.39"
"recast": "^0.11.4"
},
"devDependencies": {
"ava": "^0.7.0",
"ava": "^0.14.0",
"convert-source-map": "^1.1.2",
"coveralls": "^2.11.4",
"nyc": "^4.0.1",
"nyc": "^6.2.1",
"source-map": "^0.5.3",
"xo": "^0.11.2"
"xo": "^0.13.0"
},
"xo": {
"ignores": [
Expand Down
10 changes: 5 additions & 5 deletions test.js
Expand Up @@ -25,7 +25,7 @@ test('it provides accurate source maps', t => {
column: 8
});

t.same(loc, {
t.deepEqual(loc, {
source: 'foo.js',
line: 9,
column: 8,
Expand All @@ -47,7 +47,7 @@ test('it will attach source map comments', t => {
column: 8
});

t.same(loc, {
t.deepEqual(loc, {
source: 'foo.js',
line: 9,
column: 8,
Expand All @@ -58,9 +58,9 @@ test('it will attach source map comments', t => {
test('nested names', t => {
const results = fn(input);

t.same(results[0].nestedName, ['foo', 'foo-1']);
t.same(results[1].nestedName, ['foo', 'foo-2']);
t.same(results[2].nestedName, ['bar', 'bar-1']);
t.deepEqual(results[0].nestedName, ['foo', 'foo-1']);
t.deepEqual(results[1].nestedName, ['foo', 'foo-2']);
t.deepEqual(results[2].nestedName, ['bar', 'bar-1']);
});

function trim(code) {
Expand Down

0 comments on commit 5be6414

Please sign in to comment.