Skip to content

Commit 0916bea

Browse files
committed
Update dev-dependencies
1 parent f3fb58e commit 0916bea

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

.prettierignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
coverage/
22
hast-util-script-supporting.js
33
hast-util-script-supporting.min.js
4+
*.json
5+
*.md

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@
3333
"devDependencies": {
3434
"browserify": "^16.0.0",
3535
"nyc": "^15.0.0",
36-
"prettier": "^1.0.0",
37-
"remark-cli": "^7.0.0",
38-
"remark-preset-wooorm": "^6.0.0",
39-
"tape": "^4.0.0",
36+
"prettier": "^2.0.0",
37+
"remark-cli": "^8.0.0",
38+
"remark-preset-wooorm": "^7.0.0",
39+
"tape": "^5.0.0",
4040
"tinyify": "^2.0.0",
41-
"xo": "^0.27.0"
41+
"xo": "^0.32.0"
4242
},
4343
"scripts": {
44-
"format": "remark . -qfo && prettier --write \"**/*.js\" && xo --fix",
44+
"format": "remark . -qfo && prettier . --write && xo --fix",
4545
"build-bundle": "browserify . -s hastUtilScriptSupporting > hast-util-script-supporting.js",
4646
"build-mangle": "browserify . -s hastUtilScriptSupporting -p tinyify > hast-util-script-supporting.min.js",
4747
"build": "npm run build-bundle && npm run build-mangle",

test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
var test = require('tape')
44
var scriptSupporting = require('.')
55

6-
test('scriptSupporting', function(t) {
6+
test('scriptSupporting', function (t) {
77
t.equal(scriptSupporting(), false, 'should return `false` without node')
88

99
t.equal(scriptSupporting(null), false, 'should return `false` with `null`')

0 commit comments

Comments
 (0)