@brnshkr/config 0.0.1-alpha.4 → 0.0.1-alpha.6

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.
@@ -15513,6 +15513,6 @@ type UserOptions = Partial<ConfigOptions> & Omit<Config, 'files'>;
15513
15513
  //#endregion
15514
15514
  //#region src/js/eslint/index.d.ts
15515
15515
  declare const getConfig: (optionsAndGlobalConfig?: UserOptions, ...additionalConfigs: Awaitable<Config>[]) => FlatConfigComposer<Config, ConfigNames>;
15516
- declare const getDefaultConfig: () => Promise<FlatConfigComposer<Config, ConfigNames>>;
15516
+ declare const _default: FlatConfigComposer<Config, ConfigNames>;
15517
15517
  //#endregion
15518
- export { getDefaultConfig as default, getConfig };
15518
+ export { _default as default, getConfig };
@@ -293,7 +293,7 @@ const imports = async () => {
293
293
  "import/newline-after-import": "error",
294
294
  "import/no-absolute-path": "error",
295
295
  "import/no-amd": "error",
296
- "import/no-cycle": "error",
296
+ "import/no-cycle": ["error", { maxDepth: 3 }],
297
297
  "import/no-default-export": "error",
298
298
  "import/no-deprecated": "error",
299
299
  "import/no-duplicates": "error",
@@ -1089,6 +1089,7 @@ const getJsoncSortConfigs = () => [
1089
1089
  "peerDependenciesMeta",
1090
1090
  "optionalDependencies",
1091
1091
  "devDependencies",
1092
+ "patchedDependencies",
1092
1093
  "overrides",
1093
1094
  "resolutions",
1094
1095
  "workspaces",
@@ -2567,8 +2568,7 @@ const getConfig = (optionsAndGlobalConfig, ...additionalConfigs) => {
2567
2568
  appendToComposer(...getUserConfigs(resolvedOptions, additionalConfigs));
2568
2569
  return composer;
2569
2570
  };
2570
- const getDefaultConfig = async () => getConfig();
2571
- var eslint_default = getDefaultConfig;
2571
+ var eslint_default = getConfig();
2572
2572
 
2573
2573
  //#endregion
2574
2574
  export { eslint_default as default, getConfig };
package/dist/shared.mjs CHANGED
@@ -9,7 +9,7 @@ const interopImport = async (thePackage) => {
9
9
  //#endregion
10
10
  //#region package.json
11
11
  var name = "@brnshkr/config";
12
- var version = "0.0.1-alpha.4";
12
+ var version = "0.0.1-alpha.6";
13
13
 
14
14
  //#endregion
15
15
  //#region src/js/shared/utils/package-json.ts
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package",
3
3
  "name": "@brnshkr/config",
4
- "version": "0.0.1-alpha.4",
4
+ "version": "0.0.1-alpha.6",
5
5
  "description": "Centralized collection of configuration and tooling used across all @brnshkr projects",
6
6
  "license": "MIT",
7
7
  "author": "Patrick Rupp",