@kitschpatrol/shared-config 5.0.2 → 5.0.3

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 +7 -2
  2. package/package.json +10 -10
package/bin/cli.js CHANGED
@@ -5541,7 +5541,7 @@ var Yargs = YargsFactory(esm_default);
5541
5541
  var yargs_default = Yargs;
5542
5542
 
5543
5543
  // ../../package.json
5544
- var version = "5.0.2";
5544
+ var version = "5.0.3";
5545
5545
 
5546
5546
  // ../../src/execa-utils.ts
5547
5547
  function isErrorExecaError(error) {
@@ -6638,7 +6638,12 @@ var commandDefinition4 = {
6638
6638
  init: {
6639
6639
  configFile: "mdat.config.ts",
6640
6640
  configPackageJson: {
6641
- mdat: "@kitschpatrol/mdat-config"
6641
+ // Gnarly but it works...
6642
+ // https://github.com/cosmiconfig/cosmiconfig#imports
6643
+ // A plain `@kitschpatrol/mdat-config` unfortunately does not resolve the export
6644
+ mdat: {
6645
+ $import: "node_modules/@kitschpatrol/mdat-config/dist/index.js"
6646
+ }
6642
6647
  },
6643
6648
  locationOptionFlag: true
6644
6649
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kitschpatrol/shared-config",
3
- "version": "5.0.2",
3
+ "version": "5.0.3",
4
4
  "description": "A collection of shared configurations for various linters and formatting tools. All managed as a single dependency, and invoked via a single command.",
5
5
  "keywords": [
6
6
  "shared-config",
@@ -41,15 +41,15 @@
41
41
  "find-workspaces": "^0.3.1",
42
42
  "fs-extra": "^11.3.0",
43
43
  "prettier": "^3.4.2",
44
- "@kitschpatrol/cspell-config": "5.0.2",
45
- "@kitschpatrol/knip-config": "5.0.2",
46
- "@kitschpatrol/mdat-config": "5.0.2",
47
- "@kitschpatrol/eslint-config": "5.0.2",
48
- "@kitschpatrol/repo-config": "5.0.2",
49
- "@kitschpatrol/remark-config": "5.0.2",
50
- "@kitschpatrol/stylelint-config": "5.0.2",
51
- "@kitschpatrol/prettier-config": "5.0.2",
52
- "@kitschpatrol/typescript-config": "5.0.2"
44
+ "@kitschpatrol/cspell-config": "5.0.3",
45
+ "@kitschpatrol/eslint-config": "5.0.3",
46
+ "@kitschpatrol/knip-config": "5.0.3",
47
+ "@kitschpatrol/mdat-config": "5.0.3",
48
+ "@kitschpatrol/prettier-config": "5.0.3",
49
+ "@kitschpatrol/repo-config": "5.0.3",
50
+ "@kitschpatrol/remark-config": "5.0.3",
51
+ "@kitschpatrol/stylelint-config": "5.0.3",
52
+ "@kitschpatrol/typescript-config": "5.0.3"
53
53
  },
54
54
  "devDependencies": {
55
55
  "chalk": "^5.4.1",