@kitschpatrol/shared-config 5.4.1 → 5.4.4

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 +11 -7
  2. package/package.json +11 -11
package/bin/cli.js CHANGED
@@ -5697,9 +5697,9 @@ var require_out4 = __commonJS({
5697
5697
  }
5698
5698
  });
5699
5699
 
5700
- // ../../node_modules/.pnpm/ignore@7.0.4/node_modules/ignore/index.js
5700
+ // ../../node_modules/.pnpm/ignore@7.0.5/node_modules/ignore/index.js
5701
5701
  var require_ignore = __commonJS({
5702
- "../../node_modules/.pnpm/ignore@7.0.4/node_modules/ignore/index.js"(exports, module) {
5702
+ "../../node_modules/.pnpm/ignore@7.0.5/node_modules/ignore/index.js"(exports, module) {
5703
5703
  function makeArray(subject) {
5704
5704
  return Array.isArray(subject) ? subject : [subject];
5705
5705
  }
@@ -6135,18 +6135,22 @@ var require_ignore = __commonJS({
6135
6135
  };
6136
6136
  var factory = (options) => new Ignore(options);
6137
6137
  var isPathValid = (path10) => checkPath(path10 && checkPath.convert(path10), path10, RETURN_FALSE);
6138
- if (
6139
- // Detect `process` so that it can run in browsers.
6140
- typeof process !== "undefined" && (process.env && process.env.IGNORE_TEST_WIN32 || process.platform === "win32")
6141
- ) {
6138
+ var setupWindows = () => {
6142
6139
  const makePosix = (str) => /^\\\\\?\\/.test(str) || /["<>|\u0000-\u001F]+/u.test(str) ? str : str.replace(/\\/g, "/");
6143
6140
  checkPath.convert = makePosix;
6144
6141
  const REGEX_TEST_WINDOWS_PATH_ABSOLUTE = /^[a-z]:\//i;
6145
6142
  checkPath.isNotRelative = (path10) => REGEX_TEST_WINDOWS_PATH_ABSOLUTE.test(path10) || isNotRelative(path10);
6143
+ };
6144
+ if (
6145
+ // Detect `process` so that it can run in browsers.
6146
+ typeof process !== "undefined" && process.platform === "win32"
6147
+ ) {
6148
+ setupWindows();
6146
6149
  }
6147
6150
  module.exports = factory;
6148
6151
  factory.default = factory;
6149
6152
  module.exports.isPathValid = isPathValid;
6153
+ define(module.exports, Symbol.for("setupWindows"), setupWindows);
6150
6154
  }
6151
6155
  });
6152
6156
 
@@ -11080,7 +11084,7 @@ var Yargs = YargsFactory(esm_default);
11080
11084
  var yargs_default = Yargs;
11081
11085
 
11082
11086
  // ../../package.json
11083
- var version = "5.4.1";
11087
+ var version = "5.4.4";
11084
11088
 
11085
11089
  // ../../src/execa-utilities.ts
11086
11090
  function isErrorExecaError(error) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kitschpatrol/shared-config",
3
- "version": "5.4.1",
3
+ "version": "5.4.4",
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",
@@ -39,19 +39,19 @@
39
39
  "@pinojs/json-colorizer": "^4.0.0",
40
40
  "cosmiconfig": "^9.0.0",
41
41
  "cosmiconfig-typescript-loader": "^6.1.0",
42
- "execa": "^9.5.3",
42
+ "execa": "^9.6.0",
43
43
  "find-workspaces": "^0.3.1",
44
44
  "fs-extra": "^11.3.0",
45
45
  "prettier": "^3.5.3",
46
- "@kitschpatrol/cspell-config": "5.4.1",
47
- "@kitschpatrol/prettier-config": "5.4.1",
48
- "@kitschpatrol/eslint-config": "5.4.1",
49
- "@kitschpatrol/mdat-config": "5.4.1",
50
- "@kitschpatrol/knip-config": "5.4.1",
51
- "@kitschpatrol/repo-config": "5.4.1",
52
- "@kitschpatrol/remark-config": "5.4.1",
53
- "@kitschpatrol/stylelint-config": "5.4.1",
54
- "@kitschpatrol/typescript-config": "5.4.1"
46
+ "@kitschpatrol/knip-config": "5.4.4",
47
+ "@kitschpatrol/cspell-config": "5.4.4",
48
+ "@kitschpatrol/eslint-config": "5.4.4",
49
+ "@kitschpatrol/remark-config": "5.4.4",
50
+ "@kitschpatrol/mdat-config": "5.4.4",
51
+ "@kitschpatrol/stylelint-config": "5.4.4",
52
+ "@kitschpatrol/prettier-config": "5.4.4",
53
+ "@kitschpatrol/repo-config": "5.4.4",
54
+ "@kitschpatrol/typescript-config": "5.4.4"
55
55
  },
56
56
  "devDependencies": {
57
57
  "globby": "^14.1.0",