@jjlmoya/utils-cooking 1.25.0 → 1.26.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jjlmoya/utils-cooking",
3
- "version": "1.25.0",
3
+ "version": "1.26.0",
4
4
  "type": "module",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  import { SEORenderer } from '@jjlmoya/utils-shared';
3
- import { AMERICAN_KITCHEN_CONVERTER_TOOL } from './index';
3
+ import { americanKitchenConverter } from './entry';
4
4
  import type { KnownLocale } from '../../types';
5
5
 
6
6
  interface Props {
@@ -8,7 +8,7 @@ interface Props {
8
8
  }
9
9
 
10
10
  const { locale = 'es' } = Astro.props;
11
- const content = await AMERICAN_KITCHEN_CONVERTER_TOOL.i18n[locale]?.();
11
+ const content = await americanKitchenConverter.i18n[locale]?.();
12
12
  if (!content) return null;
13
13
  ---
14
14
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  import { SEORenderer } from '@jjlmoya/utils-shared';
3
- import { BANANA_CARE_TOOL } from './index';
3
+ import { bananaCare } from './entry';
4
4
  import type { KnownLocale } from '../../types';
5
5
 
6
6
  interface Props {
@@ -8,7 +8,7 @@ interface Props {
8
8
  }
9
9
 
10
10
  const { locale = 'es' } = Astro.props;
11
- const content = await BANANA_CARE_TOOL.i18n[locale]?.();
11
+ const content = await bananaCare.i18n[locale]?.();
12
12
  if (!content) return null;
13
13
  ---
14
14
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  import { SEORenderer } from '@jjlmoya/utils-shared';
3
- import { BRINE_TOOL } from './index';
3
+ import { brine } from './entry';
4
4
  import type { KnownLocale } from '../../types';
5
5
 
6
6
  interface Props {
@@ -8,7 +8,7 @@ interface Props {
8
8
  }
9
9
 
10
10
  const { locale = 'es' } = Astro.props;
11
- const content = await BRINE_TOOL.i18n[locale]?.();
11
+ const content = await brine.i18n[locale]?.();
12
12
  if (!content) return null;
13
13
  ---
14
14
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  import { SEORenderer } from '@jjlmoya/utils-shared';
3
- import { COOKWARE_GUIDE_TOOL } from './index';
3
+ import { cookwareGuide } from './entry';
4
4
  import type { KnownLocale } from '../../types';
5
5
 
6
6
  interface Props {
@@ -8,7 +8,7 @@ interface Props {
8
8
  }
9
9
 
10
10
  const { locale = 'es' } = Astro.props;
11
- const content = await COOKWARE_GUIDE_TOOL.i18n[locale]?.();
11
+ const content = await cookwareGuide.i18n[locale]?.();
12
12
  if (!content) return null;
13
13
  ---
14
14
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  import { SEORenderer } from '@jjlmoya/utils-shared';
3
- import { EGG_TIMER_TOOL } from './index';
3
+ import { eggTimer } from './entry';
4
4
  import type { KnownLocale } from '../../types';
5
5
 
6
6
  interface Props {
@@ -8,7 +8,7 @@ interface Props {
8
8
  }
9
9
 
10
10
  const { locale = 'es' } = Astro.props;
11
- const content = await EGG_TIMER_TOOL.i18n[locale]?.();
11
+ const content = await eggTimer.i18n[locale]?.();
12
12
  if (!content) return null;
13
13
  ---
14
14
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  import { SEORenderer } from '@jjlmoya/utils-shared';
3
- import { INGREDIENT_RESCALER_TOOL } from './index';
3
+ import { ingredientRescaler } from './entry';
4
4
  import type { KnownLocale } from '../../types';
5
5
 
6
6
  interface Props {
@@ -8,7 +8,7 @@ interface Props {
8
8
  }
9
9
 
10
10
  const { locale = 'es' } = Astro.props;
11
- const content = await INGREDIENT_RESCALER_TOOL.i18n[locale]?.();
11
+ const content = await ingredientRescaler.i18n[locale]?.();
12
12
  if (!content) return null;
13
13
  ---
14
14
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  import { SEORenderer } from '@jjlmoya/utils-shared';
3
- import { KITCHEN_TIMER_TOOL } from './index';
3
+ import { kitchenTimer } from './entry';
4
4
  import type { KnownLocale } from '../../types';
5
5
 
6
6
  interface Props {
@@ -8,7 +8,7 @@ interface Props {
8
8
  }
9
9
 
10
10
  const { locale = 'es' } = Astro.props;
11
- const content = await KITCHEN_TIMER_TOOL.i18n[locale]?.();
11
+ const content = await kitchenTimer.i18n[locale]?.();
12
12
  if (!content) return null;
13
13
  ---
14
14
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  import { SEORenderer } from '@jjlmoya/utils-shared';
3
- import { MERENGUE_CALCULATOR_TOOL } from './index';
3
+ import { meringuePeak } from './entry';
4
4
  import type { KnownLocale } from '../../types';
5
5
 
6
6
  interface Props {
@@ -8,7 +8,7 @@ interface Props {
8
8
  }
9
9
 
10
10
  const { locale = 'es' } = Astro.props;
11
- const content = await MERENGUE_CALCULATOR_TOOL.i18n[locale]?.();
11
+ const content = await meringuePeak.i18n[locale]?.();
12
12
  if (!content) return null;
13
13
  ---
14
14
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  import { SEORenderer } from '@jjlmoya/utils-shared';
3
- import { MOLD_SCALER_TOOL } from './index';
3
+ import { moldScaler } from './entry';
4
4
  import type { KnownLocale } from '../../types';
5
5
 
6
6
  interface Props {
@@ -8,7 +8,7 @@ interface Props {
8
8
  }
9
9
 
10
10
  const { locale = 'es' } = Astro.props;
11
- const content = await MOLD_SCALER_TOOL.i18n[locale]?.();
11
+ const content = await moldScaler.i18n[locale]?.();
12
12
  if (!content) return null;
13
13
  ---
14
14
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  import { SEORenderer } from '@jjlmoya/utils-shared';
3
- import { PIZZA_TOOL } from './index';
3
+ import { pizza } from './entry';
4
4
  import type { KnownLocale } from '../../types';
5
5
 
6
6
  interface Props {
@@ -8,7 +8,7 @@ interface Props {
8
8
  }
9
9
 
10
10
  const { locale = 'es' } = Astro.props;
11
- const content = await PIZZA_TOOL.i18n[locale]?.();
11
+ const content = await pizza.i18n[locale]?.();
12
12
  if (!content) return null;
13
13
  ---
14
14
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  import { SEORenderer } from '@jjlmoya/utils-shared';
3
- import { ROUX_GUIDE_TOOL } from './index';
3
+ import { rouxGuide } from './entry';
4
4
  import type { KnownLocale } from '../../types';
5
5
 
6
6
  interface Props {
@@ -8,7 +8,7 @@ interface Props {
8
8
  }
9
9
 
10
10
  const { locale = 'es' } = Astro.props;
11
- const content = await ROUX_GUIDE_TOOL.i18n[locale]?.();
11
+ const content = await rouxGuide.i18n[locale]?.();
12
12
  if (!content) return null;
13
13
  ---
14
14
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  import { SEORenderer } from '@jjlmoya/utils-shared';
3
- import { SOURDOUGH_CALCULATOR_TOOL } from './index';
3
+ import { sourdoughCalculator } from './entry';
4
4
  import type { KnownLocale } from '../../types';
5
5
 
6
6
  interface Props {
@@ -8,7 +8,7 @@ interface Props {
8
8
  }
9
9
 
10
10
  const { locale = 'es' } = Astro.props;
11
- const content = await SOURDOUGH_CALCULATOR_TOOL.i18n[locale]?.();
11
+ const content = await sourdoughCalculator.i18n[locale]?.();
12
12
  if (!content) return null;
13
13
  ---
14
14
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  import { SEORenderer } from '@jjlmoya/utils-shared';
3
- import { YEAST_CONVERTER_TOOL } from './index';
3
+ import { yeastConverter } from './entry';
4
4
  import type { KnownLocale } from '../../types';
5
5
 
6
6
  interface Props {
@@ -8,7 +8,7 @@ interface Props {
8
8
  }
9
9
 
10
10
  const { locale = 'es' } = Astro.props;
11
- const content = await YEAST_CONVERTER_TOOL.i18n[locale]?.();
11
+ const content = await yeastConverter.i18n[locale]?.();
12
12
  if (!content) return null;
13
13
  ---
14
14