glassbox 0.4.1 → 0.4.2
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/README.md +1 -1
- package/dist/cli.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -168,7 +168,7 @@ On first launch, the app will prompt you to install the `glassbox` CLI command.
|
|
|
168
168
|
|
|
169
169
|
**macOS:**
|
|
170
170
|
```bash
|
|
171
|
-
sudo ln -sf "/Applications/Glassbox.app/Contents/Resources/resources/glassbox" /usr/local/bin/glassbox
|
|
171
|
+
sudo sh -c 'mkdir -p /usr/local/bin && ln -sf "/Applications/Glassbox.app/Contents/Resources/resources/glassbox" /usr/local/bin/glassbox'
|
|
172
172
|
```
|
|
173
173
|
|
|
174
174
|
**Linux:**
|
package/dist/cli.js
CHANGED
|
@@ -5503,7 +5503,7 @@ async function main() {
|
|
|
5503
5503
|
console.log("AI service test mode enabled \u2014 using mock AI responses");
|
|
5504
5504
|
}
|
|
5505
5505
|
if (debug) {
|
|
5506
|
-
console.log(`[debug] Build timestamp: ${"2026-03-
|
|
5506
|
+
console.log(`[debug] Build timestamp: ${"2026-03-20T01:33:08.659Z"}`);
|
|
5507
5507
|
}
|
|
5508
5508
|
if (projectDir) {
|
|
5509
5509
|
process.chdir(projectDir);
|
package/package.json
CHANGED