@trackunit/iris-app 1.11.14 → 1.11.16

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/CHANGELOG.md CHANGED
@@ -1,3 +1,34 @@
1
+ ## 1.11.16 (2026-01-30)
2
+
3
+ ### 🩹 Fixes
4
+
5
+ - downgrade dotenv dependency version in package.json template ([db2ab1de868](https://github.com/Trackunit/manager/commit/db2ab1de868))
6
+ - replace empty object types with proper type aliases ([09b19d6c847](https://github.com/Trackunit/manager/commit/09b19d6c847))
7
+
8
+ ### 🧱 Updated Dependencies
9
+
10
+ - Updated iris-app-build-utilities to 1.12.16
11
+ - Updated iris-app-webpack-plugin to 1.11.16
12
+ - Updated iris-app-api to 1.14.15
13
+ - Updated react-test-setup to 1.8.16
14
+ - Updated shared-utils to 1.13.16
15
+
16
+ ### ❤️ Thank You
17
+
18
+ - aya
19
+ - Cursor Agent @cursoragent
20
+ - kla-trackunit
21
+
22
+ ## 1.11.15 (2026-01-30)
23
+
24
+ ### 🧱 Updated Dependencies
25
+
26
+ - Updated iris-app-build-utilities to 1.12.15
27
+ - Updated iris-app-webpack-plugin to 1.11.15
28
+ - Updated iris-app-api to 1.14.14
29
+ - Updated react-test-setup to 1.8.15
30
+ - Updated shared-utils to 1.13.15
31
+
1
32
  ## 1.11.14 (2026-01-29)
2
33
 
3
34
  ### 🧱 Updated Dependencies
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/iris-app",
3
- "version": "1.11.14",
3
+ "version": "1.11.16",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "main": "src/index.js",
6
6
  "generators": "./generators.json",
@@ -31,9 +31,9 @@
31
31
  "@npmcli/arborist": "^9.1.9",
32
32
  "webpack-bundle-analyzer": "^4.8.0",
33
33
  "win-ca": "^3.5.1",
34
- "@trackunit/shared-utils": "1.13.14",
35
- "@trackunit/iris-app-api": "1.14.13",
36
- "@trackunit/iris-app-webpack-plugin": "1.11.14",
34
+ "@trackunit/shared-utils": "1.13.16",
35
+ "@trackunit/iris-app-api": "1.14.15",
36
+ "@trackunit/iris-app-webpack-plugin": "1.11.16",
37
37
  "tslib": "^2.6.2",
38
38
  "@clack/prompts": "^1.0.0"
39
39
  },
@@ -0,0 +1,9 @@
1
+ # Environment variables for local development
2
+ # Copy this file to .env and fill in your values
3
+ #
4
+ # These variables are read by getSecret() from @trackunit/serverless-utils
5
+ # The env var name must match the secretKey parameter exactly
6
+ #
7
+ # Example:
8
+ # const apiKey = await getSecret({ context: c, secretKey: "API_KEY" });
9
+ # API_KEY=your_api_key_here
@@ -2,5 +2,8 @@
2
2
  "name": "<%= importPath %>",
3
3
  "type": "commonjs",
4
4
  "dependencies": {
5
+ "@hono/node-server": "^1.14.2",
6
+ "dotenv": "16.3.1",
7
+ "hono": "^4.11.4"
5
8
  }
6
9
  }
@@ -0,0 +1,20 @@
1
+ import "dotenv/config";
2
+
3
+ import { serve } from "@hono/node-server";
4
+ import { Hono } from "hono";
5
+
6
+ const app = new Hono();
7
+
8
+ app.get("/health", (c) => {
9
+ return c.json({
10
+ status: "ok",
11
+ timestamp: new Date().toISOString(),
12
+ service: "<%= projectName %>",
13
+ });
14
+ });
15
+
16
+ const port = Number(process.env.PORT) || 8000;
17
+
18
+ serve({ fetch: app.fetch, port }, (info) => {
19
+ console.log(`Server running on http://localhost:${info.port}`);
20
+ });
@@ -1 +1 @@
1
- export interface PresetGeneratorSchema {}
1
+ export type PresetGeneratorSchema = Record<string, never>;