@superpms/memory-cli 0.1.2 → 0.1.3

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.
@@ -26,7 +26,7 @@ export default async function login(args) {
26
26
  async function handleLogin(args) {
27
27
  const endpoint = args.find((a) => a.startsWith('--endpoint='))?.split('=')[1];
28
28
 
29
- const username = await prompt('Username: ');
29
+ const username = await prompt('Email: ');
30
30
  const password = await prompt('Password: ');
31
31
 
32
32
  try {
@@ -43,7 +43,7 @@ async function handleLogin(args) {
43
43
  async function handleRegister(args) {
44
44
  const endpoint = args.find((a) => a.startsWith('--endpoint='))?.split('=')[1];
45
45
 
46
- const username = await prompt('Username: ');
46
+ const username = await prompt('Email: ');
47
47
  const password = await prompt('Password: ');
48
48
  const displayName = await prompt('Display name (optional): ');
49
49
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@superpms/memory-cli",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "CLI for memory system — global layer, will sync, vendor updates",
5
5
  "type": "module",
6
6
  "bin": {