@brnshkr/config 0.0.1-alpha.4 → 0.0.1-alpha.5
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/dist/eslint/index.d.mts +2 -2
- package/dist/eslint/index.mjs +2 -3
- package/dist/shared.mjs +1 -1
- package/package.json +1 -1
package/dist/eslint/index.d.mts
CHANGED
|
@@ -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
|
|
15516
|
+
declare const _default: FlatConfigComposer<Config, ConfigNames>;
|
|
15517
15517
|
//#endregion
|
|
15518
|
-
export {
|
|
15518
|
+
export { _default as default, getConfig };
|
package/dist/eslint/index.mjs
CHANGED
|
@@ -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",
|
|
@@ -2567,8 +2567,7 @@ const getConfig = (optionsAndGlobalConfig, ...additionalConfigs) => {
|
|
|
2567
2567
|
appendToComposer(...getUserConfigs(resolvedOptions, additionalConfigs));
|
|
2568
2568
|
return composer;
|
|
2569
2569
|
};
|
|
2570
|
-
|
|
2571
|
-
var eslint_default = getDefaultConfig;
|
|
2570
|
+
var eslint_default = getConfig();
|
|
2572
2571
|
|
|
2573
2572
|
//#endregion
|
|
2574
2573
|
export { eslint_default as default, getConfig };
|
package/dist/shared.mjs
CHANGED
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
|
+
"version": "0.0.1-alpha.5",
|
|
5
5
|
"description": "Centralized collection of configuration and tooling used across all @brnshkr projects",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "Patrick Rupp",
|