Skip to content

Commit

Permalink
fix(deps): bump dependencies (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
lottamus authored Jan 2, 2020
1 parent 6facbe4 commit b0785b6
Show file tree
Hide file tree
Showing 4 changed files with 539 additions and 458 deletions.
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,25 +41,25 @@
"dependencies": {
"js-yaml": "^3.13",
"lodash": "^4.17.15",
"mdast-util-to-string": "~1.0",
"remark-frontmatter": "~1.3",
"remark-parse": "~7.0.0",
"remark-stringify": "~7.0.1",
"unified": "~8.3.2",
"unist-util-select": "~2.0"
"mdast-util-to-string": "^1.0",
"remark-frontmatter": "^1.3",
"remark-parse": "^7.0.2",
"remark-stringify": "^7.0.4",
"unified": "^8.4.2",
"unist-util-select": "^3.0"
},
"devDependencies": {
"@stoplight/scripts": "~5.1",
"@stoplight/types": "^11.1.0",
"@stoplight/types": "^11.4.0",
"@types/jest": "^24.0",
"@types/js-yaml": "3.12.1",
"@types/lodash": "^4.14.136",
"@types/lodash": "^4.14.149",
"@types/unist": "2.0.3",
"jest": "^24.8",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"tslint-config-stoplight": "^1.2.0",
"typescript": "3.5.3"
"jest": "^24.9",
"ts-jest": "^24.2.0",
"tslint": "^5.20.1",
"tslint-config-stoplight": "^1.4.0",
"typescript": "3.7.4"
},
"lint-staged": {
"*.{ts,tsx}$": [
Expand Down
2 changes: 1 addition & 1 deletion src/getters/get-property.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as Unist from 'unist';
import { select } from 'unist-util-select';

const { select } = require('unist-util-select');
const toString = require('mdast-util-to-string');

import { Frontmatter } from '../frontmatter';
Expand Down
5 changes: 4 additions & 1 deletion src/reader/__tests__/reader.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,10 @@ highlightLines: [[1,2], [4,5]]
annotations: {
title: 'My code snippet',
lineNumbers: false,
highlightLines: [[1, 2], [4, 5]],
highlightLines: [
[1, 2],
[4, 5],
],
},
}),
]);
Expand Down
Loading

0 comments on commit b0785b6

Please sign in to comment.