@ivuorinen/markdownlint-config 0.3.6 → 0.3.8
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 +4 -4
- package/scripts/postinstall.cjs +5 -3
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ivuorinen/markdownlint-config",
|
3
|
-
"version": "0.3.
|
3
|
+
"version": "0.3.8",
|
4
4
|
"type": "module",
|
5
5
|
"description": "ivuorinen's shareable configuration for markdownlint.",
|
6
6
|
"author": {
|
@@ -37,8 +37,8 @@
|
|
37
37
|
"postinstall": "node scripts/postinstall.cjs"
|
38
38
|
},
|
39
39
|
"dependencies": {
|
40
|
-
"@ivuorinen/config-checker": "^1.1.
|
41
|
-
"markdownlint-cli": "^0.
|
40
|
+
"@ivuorinen/config-checker": "^1.1.9",
|
41
|
+
"markdownlint-cli": "^0.43.0"
|
42
42
|
},
|
43
|
-
"gitHead": "
|
43
|
+
"gitHead": "afea47bfc17ecae32df959b72bf0daaf6c74bf1f"
|
44
44
|
}
|
package/scripts/postinstall.cjs
CHANGED
@@ -1,9 +1,11 @@
|
|
1
1
|
'use strict'
|
2
2
|
|
3
|
-
|
4
|
-
|
3
|
+
/* eslint no-console: "off", n/no-process-exit: "off", no-undefined: "off" -- CLI app that gives users feedback */
|
4
|
+
|
5
|
+
const fs = require('node:fs')
|
6
|
+
const path = require('node:path')
|
5
7
|
// noinspection NpmUsedModulesInstalled
|
6
|
-
const process = require('process')
|
8
|
+
const process = require('node:process')
|
7
9
|
const checkConfig = require('@ivuorinen/config-checker')
|
8
10
|
const foundConfig = checkConfig('markdownlint')
|
9
11
|
|