firstly 0.6.2 → 0.6.3

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/package.json +3 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # firstly
2
2
 
3
+ ## 0.6.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [#298](https://github.com/jycouet/firstly/pull/298) [`626db86`](https://github.com/jycouet/firstly/commit/626db8664ddcd480bc941ba38c51aaee742188c3) Thanks [@jycouet](https://github.com/jycouet)! - fix(deps): declare `@kitql/helpers` as a runtime dependency
8
+
9
+ `esm/index.js` does `import * as h from '@kitql/helpers'` (and re-exports it /
10
+ builds `ff_Log` from it), but the package only listed it under
11
+ `devDependencies`. Consumers that didn't happen to hoist it got
12
+ `Cannot find module '@kitql/helpers'` at runtime. Moved it into `dependencies`.
13
+
3
14
  ## 0.6.2
4
15
 
5
16
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "firstly",
3
- "version": "0.6.2",
3
+ "version": "0.6.3",
4
4
  "type": "module",
5
5
  "description": "Firstly, an opinionated Remult setup!",
6
6
  "funding": "https://github.com/sponsors/jycouet",
@@ -31,6 +31,7 @@
31
31
  }
32
32
  },
33
33
  "dependencies": {
34
+ "@kitql/helpers": "0.8.15",
34
35
  "@layerstack/utils": "1.0.0",
35
36
  "@mdi/js": "7.4.47",
36
37
  "@types/nodemailer": "8.0.0",
@@ -39,7 +40,7 @@
39
40
  "esm-env": "1.2.2",
40
41
  "nodemailer": "8.0.5",
41
42
  "svelte-sonner": "1.1.1",
42
- "tailwind-merge": "3.5.0",
43
+ "tailwind-merge": "3.6.0",
43
44
  "tailwindcss": "4.2.2",
44
45
  "vite-plugin-kit-routes": "1.0.6",
45
46
  "vite-plugin-stripper": "0.10.4"