Skip to content

Commit

Permalink
Update dev-dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
wooorm committed Jun 23, 2020
1 parent 6deec59 commit 3414a84
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
coverage/
remark-frontmatter.js
remark-frontmatter.min.js
*.json
*.md
12 changes: 7 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,14 @@
"remark": "^12.0.0",
"remark-cli": "^8.0.0",
"remark-preset-wooorm": "^7.0.0",
"tape": "^4.0.0",
"tape": "^5.0.0",
"tinyify": "^2.0.0",
"to-vfile": "^6.0.0",
"unified": "^9.0.0",
"xo": "^0.28.0"
"xo": "^0.32.0"
},
"scripts": {
"format": "remark *.md -qfo && prettier --write . && xo --fix",
"format": "remark . -qfo --ignore-pattern test/ && prettier . --write && xo --fix",
"build-bundle": "browserify . -s remarkFrontmatter > remark-frontmatter.js",
"build-mangle": "browserify . -s remarkFrontmatter -p tinyify > remark-frontmatter.min.js",
"build": "npm run build-bundle && npm run build-mangle",
Expand All @@ -79,11 +79,13 @@
"prettier": true,
"esnext": false,
"rules": {
"unicorn/no-fn-reference-in-iterator": "off",
"unicorn/prefer-optional-catch-binding": "off",
"guard-for-in": "off"
},
"ignores": [
"remark-frontmatter.js",
"**/*.ts"
"types/",
"remark-frontmatter.js"
]
},
"remarkConfig": {
Expand Down
2 changes: 1 addition & 1 deletion test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ test('fixtures', function (t) {
} catch (_) {}

proc = remark().use(frontmatter, config)
actual = proc.parse(input)
actual = JSON.parse(JSON.stringify(proc.parse(input)))

try {
output = read(outputPath, 'utf8')
Expand Down

0 comments on commit 3414a84

Please sign in to comment.