@laabroms/alias-cli 0.1.5 → 0.1.6

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/dist/cli.js +1 -1
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -374,7 +374,7 @@ function App() {
374
374
  "\x1B[2m\u26A1 Want aliases to auto-reload when you quit? Run this once:\x1B[0m\n"
375
375
  );
376
376
  console.log(
377
- `\x1B[7;36m echo '\\nalias-cli() { command alias-cli "$@"; ${sourceCommand}; }' >> ${fileName} && ${sourceCommand} \x1B[0m
377
+ `\x1B[7;36m echo '\\nalias-cli() { command alias-cli "$@"; unalias -a; ${sourceCommand}; }' >> ${fileName} && ${sourceCommand} \x1B[0m
378
378
  `
379
379
  );
380
380
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@laabroms/alias-cli",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "Interactive TUI for managing shell aliases",
5
5
  "type": "module",
6
6
  "main": "dist/cli.js",