@kitschpatrol/shared-config 4.5.0 → 4.6.1
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 +8 -8
- package/readme.md +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kitschpatrol/shared-config",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.6.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A collection of shared configurations for various linters and formatting tools. All managed as a single dependency, and invoked via a single command.",
|
|
6
6
|
"repository": {
|
|
@@ -45,13 +45,13 @@
|
|
|
45
45
|
"cosmiconfig": "^9.0.0",
|
|
46
46
|
"execa": "^8.0.1",
|
|
47
47
|
"fs-extra": "^11.2.0",
|
|
48
|
-
"@kitschpatrol/cspell-config": "4.
|
|
49
|
-
"@kitschpatrol/mdat-config": "4.
|
|
50
|
-
"@kitschpatrol/
|
|
51
|
-
"@kitschpatrol/
|
|
52
|
-
"@kitschpatrol/
|
|
53
|
-
"@kitschpatrol/
|
|
54
|
-
"@kitschpatrol/repo-config": "4.
|
|
48
|
+
"@kitschpatrol/cspell-config": "4.6.1",
|
|
49
|
+
"@kitschpatrol/mdat-config": "4.6.1",
|
|
50
|
+
"@kitschpatrol/remark-config": "4.6.1",
|
|
51
|
+
"@kitschpatrol/eslint-config": "4.6.1",
|
|
52
|
+
"@kitschpatrol/stylelint-config": "4.6.1",
|
|
53
|
+
"@kitschpatrol/prettier-config": "4.6.1",
|
|
54
|
+
"@kitschpatrol/repo-config": "4.6.1"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"camelcase": "^8.0.0",
|
package/readme.md
CHANGED
|
@@ -169,7 +169,7 @@ The monorepo must be kept intact, as the sub-packages depend on scripts in the p
|
|
|
169
169
|
|
|
170
170
|
Pnpm considers module hoisting harmful, and I tend to agree, but certain exceptions are carved out as necessary:
|
|
171
171
|
|
|
172
|
-
- CSpell,
|
|
172
|
+
- CSpell, remark, mdat, ESLint, and Prettier all need to be hoisted via `public-hoist-pattern` to be accessible in `pnpm exec` scripts and to VS Code plugins.
|
|
173
173
|
|
|
174
174
|
- Even basic file-only packages like `repo-config` seem to need to be hoisted via for their bin scripts to be accessible via `pnpm exec`
|
|
175
175
|
|