Skip to content

Commit 3756c4a

Browse files
committed
Update dev-dependencies
1 parent a571ccc commit 3756c4a

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ var color = true
77

88
try {
99
color = 'inspect' in require('util')
10-
} catch (err) {
10+
} catch (error) {
1111
/* istanbul ignore next - browser */
1212
color = false
1313
}

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,20 +24,20 @@
2424
"devDependencies": {
2525
"browserify": "^16.0.0",
2626
"chalk": "^2.3.0",
27-
"esmangle": "^1.0.1",
28-
"nyc": "^11.0.0",
27+
"nyc": "^13.0.0",
2928
"prettier": "^1.12.1",
30-
"remark-cli": "^5.0.0",
29+
"remark-cli": "^6.0.0",
3130
"remark-preset-wooorm": "^4.0.0",
3231
"retext": "^5.0.0",
3332
"strip-ansi": "^4.0.0",
3433
"tape": "^4.4.0",
35-
"xo": "^0.20.0"
34+
"tinyify": "^2.4.3",
35+
"xo": "^0.23.0"
3636
},
3737
"scripts": {
3838
"format": "remark . -qfo && prettier --write '**/*.js' && xo --fix",
39-
"build-bundle": "browserify index.js --bare -s unistUtilInspect > unist-util-inspect.js",
40-
"build-mangle": "esmangle unist-util-inspect.js > unist-util-inspect.min.js",
39+
"build-bundle": "browserify . --bare -s unistUtilInspect > unist-util-inspect.js",
40+
"build-mangle": "browserify . --bare -s unistUtilInspect -p tinyify > unist-util-inspect.min.js",
4141
"build": "npm run build-bundle && npm run build-mangle",
4242
"test-api": "node test",
4343
"test-coverage": "nyc --reporter lcov tape test.js",

0 commit comments

Comments
 (0)