pickier 0.1.17 → 0.1.18
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/bin/cli.js +4 -9
- package/dist/src/index.js +3 -8
- package/package.json +1 -1
package/dist/bin/cli.js
CHANGED
|
@@ -6213,14 +6213,9 @@ async function loadConfigFromPath(pathLike) {
|
|
|
6213
6213
|
return _cachedDefaultConfig;
|
|
6214
6214
|
}
|
|
6215
6215
|
try {
|
|
6216
|
-
const {
|
|
6217
|
-
const
|
|
6218
|
-
|
|
6219
|
-
if (existsSync6(configPath)) {
|
|
6220
|
-
const { getConfig: getConfig2 } = await init_config().then(() => exports_config);
|
|
6221
|
-
const cfg = await getConfig2();
|
|
6222
|
-
return mergeConfig(defaultConfig3, cfg);
|
|
6223
|
-
}
|
|
6216
|
+
const { getConfig: getConfig2 } = await init_config().then(() => exports_config);
|
|
6217
|
+
const cfg = await getConfig2();
|
|
6218
|
+
return mergeConfig(defaultConfig3, cfg);
|
|
6224
6219
|
} catch {}
|
|
6225
6220
|
return mergeConfig(defaultConfig3, {});
|
|
6226
6221
|
}
|
|
@@ -32831,7 +32826,7 @@ var require_package = __commonJS((exports, module) => {
|
|
|
32831
32826
|
module.exports = {
|
|
32832
32827
|
name: "pickier",
|
|
32833
32828
|
type: "module",
|
|
32834
|
-
version: "0.1.
|
|
32829
|
+
version: "0.1.18",
|
|
32835
32830
|
description: "Format, lint and more in a fraction of seconds.",
|
|
32836
32831
|
author: "Chris Breuer <chris@stacksjs.org>",
|
|
32837
32832
|
license: "MIT",
|
package/dist/src/index.js
CHANGED
|
@@ -27178,14 +27178,9 @@ async function loadConfigFromPath(pathLike) {
|
|
|
27178
27178
|
return _cachedDefaultConfig;
|
|
27179
27179
|
}
|
|
27180
27180
|
try {
|
|
27181
|
-
const {
|
|
27182
|
-
const
|
|
27183
|
-
|
|
27184
|
-
if (existsSync10(configPath)) {
|
|
27185
|
-
const { getConfig: getConfig2 } = await init_config().then(() => exports_config);
|
|
27186
|
-
const cfg = await getConfig2();
|
|
27187
|
-
return mergeConfig(defaultConfig3, cfg);
|
|
27188
|
-
}
|
|
27181
|
+
const { getConfig: getConfig2 } = await init_config().then(() => exports_config);
|
|
27182
|
+
const cfg = await getConfig2();
|
|
27183
|
+
return mergeConfig(defaultConfig3, cfg);
|
|
27189
27184
|
} catch {}
|
|
27190
27185
|
return mergeConfig(defaultConfig3, {});
|
|
27191
27186
|
}
|