@kitschpatrol/shared-config 5.7.4 → 5.8.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/bin/cli.js +3 -5
- package/package.json +10 -10
- package/readme.md +1 -1
package/bin/cli.js
CHANGED
|
@@ -11084,7 +11084,7 @@ var Yargs = YargsFactory(esm_default);
|
|
|
11084
11084
|
var yargs_default = Yargs;
|
|
11085
11085
|
|
|
11086
11086
|
// ../../package.json
|
|
11087
|
-
var version = "5.
|
|
11087
|
+
var version = "5.8.1";
|
|
11088
11088
|
|
|
11089
11089
|
// ../../src/execa-utilities.ts
|
|
11090
11090
|
function isErrorExecaError(error) {
|
|
@@ -11245,8 +11245,7 @@ function isDirectoryBelow(directory, parent) {
|
|
|
11245
11245
|
}
|
|
11246
11246
|
function findWorkspacePackageDirectories() {
|
|
11247
11247
|
const packageDirectory = getPackageDirectory();
|
|
11248
|
-
const directories = /* @__PURE__ */ new Set();
|
|
11249
|
-
directories.add(packageDirectory);
|
|
11248
|
+
const directories = /* @__PURE__ */ new Set([packageDirectory]);
|
|
11250
11249
|
const workspaces = findWorkspaces();
|
|
11251
11250
|
if (workspaces !== null) {
|
|
11252
11251
|
for (const workspace of workspaces) {
|
|
@@ -12097,7 +12096,6 @@ var sharedKnipConfig = {
|
|
|
12097
12096
|
"@prettier/plugin-xml",
|
|
12098
12097
|
"prettier-plugin-packagejson",
|
|
12099
12098
|
"prettier-plugin-sh",
|
|
12100
|
-
"prettier-plugin-sql",
|
|
12101
12099
|
"prettier-plugin-tailwindcss",
|
|
12102
12100
|
"prettier-plugin-toml",
|
|
12103
12101
|
// Undetected due to string import in cspell.config.js
|
|
@@ -12275,7 +12273,7 @@ var sharedOptions = [
|
|
|
12275
12273
|
"--plugin=prettier-plugin-astro",
|
|
12276
12274
|
"--plugin=prettier-plugin-packagejson",
|
|
12277
12275
|
"--plugin=prettier-plugin-sh",
|
|
12278
|
-
|
|
12276
|
+
// '--plugin=prettier-plugin-sql',
|
|
12279
12277
|
"--plugin=prettier-plugin-svelte",
|
|
12280
12278
|
"--plugin=prettier-plugin-tailwindcss",
|
|
12281
12279
|
"--plugin=prettier-plugin-toml",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kitschpatrol/shared-config",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.8.1",
|
|
4
4
|
"description": "A collection of shared configurations, linters, and formatting tools for TypeScript projects. All managed as a single dependency, and invoked via a single CLI command.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"shared-config",
|
|
@@ -44,15 +44,15 @@
|
|
|
44
44
|
"find-workspaces": "^0.3.1",
|
|
45
45
|
"fs-extra": "^11.3.2",
|
|
46
46
|
"prettier": "^3.6.2",
|
|
47
|
-
"@kitschpatrol/
|
|
48
|
-
"@kitschpatrol/
|
|
49
|
-
"@kitschpatrol/
|
|
50
|
-
"@kitschpatrol/mdat-config": "5.
|
|
51
|
-
"@kitschpatrol/
|
|
52
|
-
"@kitschpatrol/
|
|
53
|
-
"@kitschpatrol/
|
|
54
|
-
"@kitschpatrol/repo-config": "5.
|
|
55
|
-
"@kitschpatrol/typescript-config": "5.
|
|
47
|
+
"@kitschpatrol/eslint-config": "5.8.1",
|
|
48
|
+
"@kitschpatrol/knip-config": "5.8.1",
|
|
49
|
+
"@kitschpatrol/cspell-config": "5.8.1",
|
|
50
|
+
"@kitschpatrol/mdat-config": "5.8.1",
|
|
51
|
+
"@kitschpatrol/remark-config": "5.8.1",
|
|
52
|
+
"@kitschpatrol/prettier-config": "5.8.1",
|
|
53
|
+
"@kitschpatrol/stylelint-config": "5.8.1",
|
|
54
|
+
"@kitschpatrol/repo-config": "5.8.1",
|
|
55
|
+
"@kitschpatrol/typescript-config": "5.8.1"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"globby": "^15.0.0",
|