squeezr-ai 1.16.14 → 1.16.15
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/bin/squeezr.js +6 -0
- package/package.json +1 -1
package/bin/squeezr.js
CHANGED
|
@@ -138,6 +138,12 @@ function squeezr {
|
|
|
138
138
|
if (!existing.includes(psMarker)) {
|
|
139
139
|
fs.appendFileSync(psProfilePath, `\n${psFunction}\n`)
|
|
140
140
|
console.log(` [ok] PowerShell wrapper added to ${psProfilePath}`)
|
|
141
|
+
console.log('')
|
|
142
|
+
console.log(' ╔═══════════════════════════════════════════════════════════════╗')
|
|
143
|
+
console.log(' ║ ONE-TIME SETUP: Close this terminal and open a new one. ║')
|
|
144
|
+
console.log(' ║ This loads the wrapper that auto-refreshes env vars. ║')
|
|
145
|
+
console.log(' ║ After that, you will NEVER need to do this again. ║')
|
|
146
|
+
console.log(' ╚═══════════════════════════════════════════════════════════════╝')
|
|
141
147
|
} else {
|
|
142
148
|
const updated = existing.replace(/# squeezr wrapper[\s\S]*?# end squeezr wrapper/, psFunction)
|
|
143
149
|
fs.writeFileSync(psProfilePath, updated)
|
package/package.json
CHANGED