We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4da50e commit 9e6ec7cCopy full SHA for 9e6ec7c
package.json
@@ -41,7 +41,9 @@
41
"negate": "^1.0.0",
42
"nyc": "^11.0.0",
43
"rehype-parse": "^4.0.0",
44
+ "remark-cli": "^4.0.0",
45
"remark-parse": "^4.0.0",
46
+ "remark-preset-wooorm": "^3.0.0",
47
"remark-stringify": "^4.0.0",
48
"tape": "^4.6.3",
49
"unified": "^6.1.0",
@@ -50,10 +52,11 @@
50
52
"xo": "^0.18.1"
51
53
},
54
"scripts": {
55
+ "build": "remark *.md -qfo",
56
"lint": "xo",
57
"test-api": "node tests",
58
"test-coverage": "nyc --reporter lcov tape tests/index.js",
- "test": "npm run lint && npm run test-coverage"
59
+ "test": "npm run build && npm run lint && npm run test-coverage"
60
61
"nyc": {
62
"check-coverage": true,
@@ -67,5 +70,10 @@
67
70
"rules": {
68
71
"no-multi-assign": "off"
69
72
}
73
+ },
74
+ "remarkConfig": {
75
+ "plugins": [
76
+ "preset-wooorm"
77
+ ]
78
79
0 commit comments