@kitschpatrol/shared-config 5.8.2 → 5.9.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.
Files changed (2) hide show
  1. package/bin/cli.js +3 -3
  2. package/package.json +10 -10
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.8.2";
11087
+ var version = "5.9.0";
11088
11088
 
11089
11089
  // ../../src/execa-utilities.ts
11090
11090
  function isErrorExecaError(error) {
@@ -11826,7 +11826,7 @@ async function checkForUnusedWords(fileGlobs = ["."]) {
11826
11826
  {
11827
11827
  issue({ text, uri }) {
11828
11828
  unusedWords = unusedWords.filter(
11829
- (word) => !(word.toLowerCase() === text.toLowerCase().replace(/['\u2019\u2018]s$/, "") && uri !== url.href)
11829
+ (word) => word.toLowerCase() !== text.toLowerCase().replace(/['\u2019\u2018]s$/, "") || uri === url.href
11830
11830
  );
11831
11831
  }
11832
11832
  }
@@ -11881,7 +11881,7 @@ async function casePoliceCommand(logStream, positionalArguments) {
11881
11881
  const logPrefix = "[Case Police]";
11882
11882
  const subStream = createStreamFilter((text) => {
11883
11883
  const plainText = stripVTControlCharacters(text);
11884
- const shouldStrip = !(plainText.startsWith(logPrefix) && plainText.includes("\u2192"));
11884
+ const shouldStrip = !plainText.startsWith(logPrefix) || !plainText.includes("\u2192");
11885
11885
  return shouldStrip;
11886
11886
  });
11887
11887
  subStream.pipe(logStream);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kitschpatrol/shared-config",
3
- "version": "5.8.2",
3
+ "version": "5.9.0",
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/cspell-config": "5.8.2",
48
- "@kitschpatrol/eslint-config": "5.8.2",
49
- "@kitschpatrol/knip-config": "5.8.2",
50
- "@kitschpatrol/prettier-config": "5.8.2",
51
- "@kitschpatrol/remark-config": "5.8.2",
52
- "@kitschpatrol/mdat-config": "5.8.2",
53
- "@kitschpatrol/repo-config": "5.8.2",
54
- "@kitschpatrol/stylelint-config": "5.8.2",
55
- "@kitschpatrol/typescript-config": "5.8.2"
47
+ "@kitschpatrol/cspell-config": "5.9.0",
48
+ "@kitschpatrol/eslint-config": "5.9.0",
49
+ "@kitschpatrol/knip-config": "5.9.0",
50
+ "@kitschpatrol/mdat-config": "5.9.0",
51
+ "@kitschpatrol/repo-config": "5.9.0",
52
+ "@kitschpatrol/remark-config": "5.9.0",
53
+ "@kitschpatrol/prettier-config": "5.9.0",
54
+ "@kitschpatrol/stylelint-config": "5.9.0",
55
+ "@kitschpatrol/typescript-config": "5.9.0"
56
56
  },
57
57
  "devDependencies": {
58
58
  "globby": "^15.0.0",