Skip to content

Commit c0f7b81

Browse files
committed
Update dev-dependencies
1 parent 7ea22ac commit c0f7b81

File tree

2 files changed

+10
-14
lines changed

2 files changed

+10
-14
lines changed

package.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -34,21 +34,21 @@
3434
"@types/unist": "^2.0.2"
3535
},
3636
"devDependencies": {
37-
"browserify": "^16.0.0",
38-
"dtslint": "^3.0.0",
37+
"browserify": "^17.0.0",
38+
"dtslint": "^4.0.0",
3939
"nyc": "^15.0.0",
4040
"prettier": "^2.0.0",
41-
"remark-cli": "^8.0.0",
42-
"remark-preset-wooorm": "^7.0.0",
41+
"remark-cli": "^9.0.0",
42+
"remark-preset-wooorm": "^8.0.0",
4343
"tape": "^5.0.0",
44-
"tinyify": "^2.0.0",
45-
"typescript": "^3.0.0",
46-
"xo": "^0.32.0"
44+
"tinyify": "^3.0.0",
45+
"typescript": "^4.0.0",
46+
"xo": "^0.34.0"
4747
},
4848
"scripts": {
49-
"format": "remark . -qfo && prettier . --write && xo --fix",
50-
"build-bundle": "browserify . -s unistUtilStringifyPosition > unist-util-stringify-position.js",
51-
"build-mangle": "browserify . -s unistUtilStringifyPosition -p tinyify > unist-util-stringify-position.min.js",
49+
"format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix",
50+
"build-bundle": "browserify . -s unistUtilStringifyPosition -o unist-util-stringify-position.js",
51+
"build-mangle": "browserify . -s unistUtilStringifyPosition -o unist-util-stringify-position.min.js -p tinyify",
5252
"build": "npm run build-bundle && npm run build-mangle",
5353
"test-api": "node test",
5454
"test-coverage": "nyc --reporter lcov tape test.js",

types/unist-util-stringify-position-tests.ts

-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
import stringify = require('unist-util-stringify-position')
22

3-
/* eslint-disable @typescript-eslint/no-unused-vars */
4-
53
// Point
64
const stringValue: string = stringify({line: 2, column: 3}) // => '2:3'
75

@@ -20,5 +18,3 @@ const stringValue3: string = stringify({
2018
end: {line: 5, column: 12}
2119
}
2220
}) // => '5:11-5:12'
23-
24-
/* eslint-enable @typescript-eslint/no-unused-vars */

0 commit comments

Comments
 (0)