@hiddenability/opinionated-defaults 0.0.8 → 0.0.10

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.
@@ -1,5 +1,6 @@
1
1
  import baseConfig from "./base.mjs";
2
- import { merge } from "lodash";
2
+ import lodash from "lodash";
3
+ const { merge } = lodash;
3
4
  const astroConfig = merge(
4
5
  {
5
6
  plugins: ["prettier-plugin-astro"],
@@ -1,4 +1,4 @@
1
1
  export { default as prettierConfigBase } from './base';
2
2
  export { default as prettierConfigAstro } from './astro';
3
3
  export { default as prettierConfigTailwind } from './tailwind';
4
- export { merge as configMerge } from 'lodash';
4
+ export declare const merge: any;
@@ -1,4 +1,5 @@
1
+ import lodash from "lodash";
1
2
  export { default as prettierConfigBase } from "./base.mjs";
2
3
  export { default as prettierConfigAstro } from "./astro.mjs";
3
4
  export { default as prettierConfigTailwind } from "./tailwind.mjs";
4
- export { merge as configMerge } from "lodash";
5
+ export const { merge } = lodash;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@hiddenability/opinionated-defaults",
3
3
  "description": "Opinionated default configurations for dev tools.",
4
- "version": "0.0.8",
4
+ "version": "0.0.10",
5
5
  "license": "MIT",
6
6
  "repository": {
7
7
  "type": "git",
@@ -51,7 +51,7 @@
51
51
  "typescript-eslint": "^8.34.0"
52
52
  },
53
53
  "devDependencies": {
54
- "@hiddenability/opinionated-defaults": "^0.0.6",
54
+ "@hiddenability/opinionated-defaults": "^0.0.9",
55
55
  "jiti": "^2.4.2",
56
56
  "typescript": "^5.8.3",
57
57
  "unbuild": "^3.5.0"