@auto-engineer/generate-theme 1.80.0 → 1.82.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +42 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,47 @@
1
1
  # @auto-engineer/generate-theme
2
2
 
3
+ ## 1.82.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`944665a`](https://github.com/BeOnAuto/auto-engineer/commit/944665afd71e9193681427f17dc324910424e8e0) Thanks [@SamHatoum](https://github.com/SamHatoum)! - - Added restart commands for server, client, and storybook
8
+ - Fixed clean:dev script to include the installation step
9
+
10
+ - [`5fe80c3`](https://github.com/BeOnAuto/auto-engineer/commit/5fe80c343c16ebe6fe967c3c33c47c77c26398dc) Thanks [@SamHatoum](https://github.com/SamHatoum)! - - update killPortHolder to use graceful SIGTERM then SIGKILL
11
+
12
+ - [`cfd0ff2`](https://github.com/BeOnAuto/auto-engineer/commit/cfd0ff2c30666168d709452ea59855781f49e480) Thanks [@SamHatoum](https://github.com/SamHatoum)! - - add restart commands for server, client, and storybook
13
+
14
+ ### Patch Changes
15
+
16
+ - [`e54f2f8`](https://github.com/BeOnAuto/auto-engineer/commit/e54f2f8fab5e97af390431ef739d940859fcebbd) Thanks [@github-actions[bot]](https://github.com/github-actions%5Bbot%5D)! - - **generate-react-client**: add HMR configuration to Vite server settings
17
+ - **global**: version packages
18
+
19
+ - [`7df54c5`](https://github.com/BeOnAuto/auto-engineer/commit/7df54c5c6e66ad07f500f4992fb3633016f69ef7) Thanks [@SamHatoum](https://github.com/SamHatoum)! - - sort imports in restart command files
20
+
21
+ - [`9905df3`](https://github.com/BeOnAuto/auto-engineer/commit/9905df3c3a2617788e731d6245413774a90a979a) Thanks [@SamHatoum](https://github.com/SamHatoum)! - - update ketchup-plan for restart commands
22
+
23
+ - [`c8b668b`](https://github.com/BeOnAuto/auto-engineer/commit/c8b668b00d4228bd1feeb4962500e830a27c32e6) Thanks [@SamHatoum](https://github.com/SamHatoum)! - - sort exports alphabetically to satisfy biome organizeImports
24
+
25
+ - Updated dependencies [[`944665a`](https://github.com/BeOnAuto/auto-engineer/commit/944665afd71e9193681427f17dc324910424e8e0), [`e54f2f8`](https://github.com/BeOnAuto/auto-engineer/commit/e54f2f8fab5e97af390431ef739d940859fcebbd), [`5fe80c3`](https://github.com/BeOnAuto/auto-engineer/commit/5fe80c343c16ebe6fe967c3c33c47c77c26398dc), [`7df54c5`](https://github.com/BeOnAuto/auto-engineer/commit/7df54c5c6e66ad07f500f4992fb3633016f69ef7), [`9905df3`](https://github.com/BeOnAuto/auto-engineer/commit/9905df3c3a2617788e731d6245413774a90a979a), [`cfd0ff2`](https://github.com/BeOnAuto/auto-engineer/commit/cfd0ff2c30666168d709452ea59855781f49e480), [`c8b668b`](https://github.com/BeOnAuto/auto-engineer/commit/c8b668b00d4228bd1feeb4962500e830a27c32e6)]:
26
+ - @auto-engineer/message-bus@1.82.0
27
+
28
+ ## 1.81.0
29
+
30
+ ### Minor Changes
31
+
32
+ - [`9e5108b`](https://github.com/BeOnAuto/auto-engineer/commit/9e5108b25fc9b9ede6a4b51e450ac9c85e3e40c4) Thanks [@github-actions[bot]](https://github.com/github-actions%5Bbot%5D)! - - **server-checks**: extract runLintCheck core logic
33
+ - **server-checks**: extract runTypeCheck core logic
34
+ - **server-checks**: extract findProjectRoot into shared module
35
+ - format files with biome
36
+ - **app-implementer**: replace Message[] with ChatTurn in RefinementHistory
37
+
38
+ ### Patch Changes
39
+
40
+ - [`f225ede`](https://github.com/BeOnAuto/auto-engineer/commit/f225edec208bb5bce29869c676e7cca35f5b0958) Thanks [@SamHatoum](https://github.com/SamHatoum)! - - Added Hot Module Replacement (HMR) configuration to the generated React client's Vite server settings
41
+
42
+ - Updated dependencies [[`9e5108b`](https://github.com/BeOnAuto/auto-engineer/commit/9e5108b25fc9b9ede6a4b51e450ac9c85e3e40c4), [`f225ede`](https://github.com/BeOnAuto/auto-engineer/commit/f225edec208bb5bce29869c676e7cca35f5b0958)]:
43
+ - @auto-engineer/message-bus@1.81.0
44
+
3
45
  ## 1.80.0
4
46
 
5
47
  ### Minor Changes
package/package.json CHANGED
@@ -21,12 +21,12 @@
21
21
  "@ai-sdk/openai-compatible": "^2.0.10",
22
22
  "ai": "^6.0.0",
23
23
  "debug": "^4.4.1",
24
- "@auto-engineer/message-bus": "1.80.0"
24
+ "@auto-engineer/message-bus": "1.82.0"
25
25
  },
26
26
  "devDependencies": {
27
27
  "@types/debug": "^4.1.12"
28
28
  },
29
- "version": "1.80.0",
29
+ "version": "1.82.0",
30
30
  "scripts": {
31
31
  "build": "tsc && tsx ../../scripts/fix-esm-imports.ts",
32
32
  "test": "vitest run --reporter=dot",