eslint-plugin-markdown-preferences 0.12.0 → 0.13.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-plugin-markdown-preferences",
3
- "version": "0.12.0",
3
+ "version": "0.13.0",
4
4
  "description": "ESLint plugin that enforces our markdown preferences",
5
5
  "type": "module",
6
6
  "exports": {
@@ -26,6 +26,7 @@
26
26
  "cover": "c8 --reporter=lcov npm run test",
27
27
  "test:update": "npm run mocha -- \"tests/src/**/*.ts\" --reporter=dot --update",
28
28
  "update": "npm run ts -- ./tools/update.ts && npm run eslint-fix",
29
+ "update:resources": "npm run ts -- ./tools/update-resources.ts && npm run eslint-fix",
29
30
  "new": "npm run ts -- ./tools/new-rule.ts",
30
31
  "docs:watch": "vitepress dev docs --open",
31
32
  "docs:build": "vitepress build docs",
@@ -120,5 +121,9 @@
120
121
  },
121
122
  "publishConfig": {
122
123
  "access": "public"
124
+ },
125
+ "dependencies": {
126
+ "emoji-regex-xs": "^2.0.1",
127
+ "string-width": "^7.2.0"
123
128
  }
124
129
  }