@jjlmoya/utils-cooking 1.29.0 → 1.31.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 +1 -1
- package/src/category/index.ts +5 -0
- package/src/entries.ts +6 -1
- package/src/index.ts +3 -0
- package/src/tests/i18n-titles.test.ts +8 -2
- package/src/tests/i18n_coverage.test.ts +1 -0
- package/src/tests/ice-cream-pac-pod.test.ts +68 -0
- package/src/tests/locale_completeness.test.ts +3 -2
- package/src/tests/tool_validation.test.ts +3 -2
- package/src/tool/botulism-canning-safety/bibliography.astro +6 -0
- package/src/tool/botulism-canning-safety/bibliography.ts +10 -0
- package/src/tool/botulism-canning-safety/botulism-canning-safety.css +545 -0
- package/src/tool/botulism-canning-safety/component.astro +296 -0
- package/src/tool/botulism-canning-safety/components/AutoclaveDisplay.astro +62 -0
- package/src/tool/botulism-canning-safety/components/SporeVisualizer.astro +48 -0
- package/src/tool/botulism-canning-safety/components/ThermalControls.astro +60 -0
- package/src/tool/botulism-canning-safety/entry.ts +26 -0
- package/src/tool/botulism-canning-safety/i18n/de.ts +188 -0
- package/src/tool/botulism-canning-safety/i18n/en.ts +188 -0
- package/src/tool/botulism-canning-safety/i18n/es.ts +188 -0
- package/src/tool/botulism-canning-safety/i18n/fr.ts +188 -0
- package/src/tool/botulism-canning-safety/i18n/id.ts +188 -0
- package/src/tool/botulism-canning-safety/i18n/it.ts +188 -0
- package/src/tool/botulism-canning-safety/i18n/ja.ts +188 -0
- package/src/tool/botulism-canning-safety/i18n/ko.ts +188 -0
- package/src/tool/botulism-canning-safety/i18n/nl.ts +188 -0
- package/src/tool/botulism-canning-safety/i18n/pl.ts +188 -0
- package/src/tool/botulism-canning-safety/i18n/pt.ts +188 -0
- package/src/tool/botulism-canning-safety/i18n/ru.ts +188 -0
- package/src/tool/botulism-canning-safety/i18n/sv.ts +188 -0
- package/src/tool/botulism-canning-safety/i18n/tr.ts +188 -0
- package/src/tool/botulism-canning-safety/i18n/zh.ts +188 -0
- package/src/tool/botulism-canning-safety/index.ts +11 -0
- package/src/tool/botulism-canning-safety/logic.ts +47 -0
- package/src/tool/botulism-canning-safety/seo.astro +15 -0
- package/src/tool/ice-cream-pac-pod/bibliography.astro +6 -0
- package/src/tool/ice-cream-pac-pod/bibliography.ts +10 -0
- package/src/tool/ice-cream-pac-pod/component.astro +291 -0
- package/src/tool/ice-cream-pac-pod/components/IceCryoGauge.astro +54 -0
- package/src/tool/ice-cream-pac-pod/components/ScoopVisualizer.astro +54 -0
- package/src/tool/ice-cream-pac-pod/components/SugarFormulators.astro +107 -0
- package/src/tool/ice-cream-pac-pod/entry.ts +26 -0
- package/src/tool/ice-cream-pac-pod/i18n/de.ts +182 -0
- package/src/tool/ice-cream-pac-pod/i18n/en.ts +183 -0
- package/src/tool/ice-cream-pac-pod/i18n/es.ts +182 -0
- package/src/tool/ice-cream-pac-pod/i18n/fr.ts +182 -0
- package/src/tool/ice-cream-pac-pod/i18n/id.ts +182 -0
- package/src/tool/ice-cream-pac-pod/i18n/it.ts +182 -0
- package/src/tool/ice-cream-pac-pod/i18n/ja.ts +182 -0
- package/src/tool/ice-cream-pac-pod/i18n/ko.ts +182 -0
- package/src/tool/ice-cream-pac-pod/i18n/nl.ts +177 -0
- package/src/tool/ice-cream-pac-pod/i18n/pl.ts +177 -0
- package/src/tool/ice-cream-pac-pod/i18n/pt.ts +177 -0
- package/src/tool/ice-cream-pac-pod/i18n/ru.ts +182 -0
- package/src/tool/ice-cream-pac-pod/i18n/sv.ts +177 -0
- package/src/tool/ice-cream-pac-pod/i18n/tr.ts +182 -0
- package/src/tool/ice-cream-pac-pod/i18n/zh.ts +182 -0
- package/src/tool/ice-cream-pac-pod/ice-cream-pac-pod.css +570 -0
- package/src/tool/ice-cream-pac-pod/index.ts +11 -0
- package/src/tool/ice-cream-pac-pod/logic.ts +62 -0
- package/src/tool/ice-cream-pac-pod/seo.astro +15 -0
- package/src/tool/spherification-bath-calculator/component.astro +37 -0
- package/src/tools.ts +5 -0
package/src/tools.ts
CHANGED
|
@@ -15,6 +15,8 @@ import { COOKWARE_GUIDE_TOOL } from './tool/cookware-guide';
|
|
|
15
15
|
import { YEAST_CONVERTER_TOOL } from './tool/yeast-converter';
|
|
16
16
|
import { LACTO_FERMENTATION_SALT_TOOL } from './tool/lacto-fermentation-salt-calculator';
|
|
17
17
|
import { SPHERIFICATION_BATH_TOOL } from './tool/spherification-bath-calculator';
|
|
18
|
+
import { ICE_CREAM_PAC_POD_TOOL } from './tool/ice-cream-pac-pod';
|
|
19
|
+
import { BOTULISM_CANNING_SAFETY_TOOL } from './tool/botulism-canning-safety';
|
|
18
20
|
|
|
19
21
|
export const ALL_TOOLS: ToolDefinition[] = [
|
|
20
22
|
AMERICAN_KITCHEN_CONVERTER_TOOL,
|
|
@@ -32,4 +34,7 @@ export const ALL_TOOLS: ToolDefinition[] = [
|
|
|
32
34
|
YEAST_CONVERTER_TOOL,
|
|
33
35
|
LACTO_FERMENTATION_SALT_TOOL,
|
|
34
36
|
SPHERIFICATION_BATH_TOOL,
|
|
37
|
+
ICE_CREAM_PAC_POD_TOOL,
|
|
38
|
+
BOTULISM_CANNING_SAFETY_TOOL,
|
|
35
39
|
];
|
|
40
|
+
|