@hkdigital/lib-sveltekit 0.1.18 → 0.1.19

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.
@@ -103,12 +103,11 @@
103
103
  // Select the appropriate design based on orientation
104
104
  const activeDesign = isLandscape ? designLandscape : designPortrait;
105
105
 
106
- // Log to help debug
107
- console.debug(
108
- `GameBox scaling [${isLandscape ? 'landscape' : 'portrait'}]:`,
109
- `game: ${gameWidth}x${gameHeight}`,
110
- `design: ${activeDesign.width}x${activeDesign.height}`
111
- );
106
+ // console.debug(
107
+ // `GameBox scaling [${isLandscape ? 'landscape' : 'portrait'}]:`,
108
+ // `game: ${gameWidth}x${gameHeight}`,
109
+ // `design: ${activeDesign.width}x${activeDesign.height}`
110
+ // );
112
111
 
113
112
  // Apply scaling with the current design based on orientation
114
113
  return enableContainerScaling({
@@ -22,3 +22,4 @@ export type LoggerExtension = {
22
22
  */
23
23
  /** @type {pino.Logger & LoggerExtension} */
24
24
  export const logger: pino.Logger & LoggerExtension;
25
+ import pino from 'pino';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hkdigital/lib-sveltekit",
3
- "version": "0.1.18",
3
+ "version": "0.1.19",
4
4
  "author": {
5
5
  "name": "HKdigital",
6
6
  "url": "https://hkdigital.nl"
@@ -58,9 +58,12 @@
58
58
  "peerDependencies": {
59
59
  "@steeze-ui/heroicons": "^2.4.2",
60
60
  "@sveltejs/kit": "^2.15.2",
61
+ "pino": "^9.6.0",
62
+ "pino-pretty": "^13.0.0",
61
63
  "runed": "^0.23.0",
62
64
  "svelte": "^5.0.0",
63
- "valibot": "^0.42.1"
65
+ "valibot": "^0.42.1",
66
+ "zod": "^3.24.2"
64
67
  },
65
68
  "devDependencies": {
66
69
  "@playwright/test": "^1.50.1",
@@ -78,6 +81,8 @@
78
81
  "eslint-plugin-svelte": "^3.0.2",
79
82
  "globals": "^16.0.0",
80
83
  "jsdom": "^26.0.0",
84
+ "pino": "^9.6.0",
85
+ "pino-pretty": "^13.0.0",
81
86
  "postcss": "^8.5.3",
82
87
  "postcss-mixins": "^11.0.3",
83
88
  "prettier": "^3.5.3",
@@ -91,9 +96,7 @@
91
96
  "typescript": "^5.8.2",
92
97
  "vite": "^6.2.0",
93
98
  "vite-imagetools": "^7.0.5",
94
- "vitest": "^3.0.7"
95
- },
96
- "dependencies": {
99
+ "vitest": "^3.0.7",
97
100
  "zod": "^3.24.2"
98
101
  }
99
102
  }