tlc-claude-code 1.4.7 → 1.4.8

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.
@@ -101,9 +101,12 @@ services:
101
101
  working_dir: /project
102
102
  command: >
103
103
  sh -c "
104
- npm install -g tlc-claude-code &&
105
- TLC_DIR=$$(npm root -g)/tlc-claude-code &&
106
- cd /project && node $$TLC_DIR/server/index.js --proxy-only
104
+ echo 'Installing TLC...' &&
105
+ npm install -g tlc-claude-code@latest &&
106
+ TLC_DIR=/usr/local/lib/node_modules/tlc-claude-code &&
107
+ echo 'TLC installed at:' $$TLC_DIR &&
108
+ ls -la $$TLC_DIR/server/ &&
109
+ cd /project && node $$TLC_DIR/server/index.js --proxy-only --skip-db
107
110
  "
108
111
  environment:
109
112
  - TLC_PORT=3147
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tlc-claude-code",
3
- "version": "1.4.7",
3
+ "version": "1.4.8",
4
4
  "description": "TLC - Test Led Coding for Claude Code",
5
5
  "bin": {
6
6
  "tlc": "./bin/tlc.js",