kmod-cli 1.7.6 → 1.7.7

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 CHANGED
@@ -19,7 +19,7 @@ yarn add kmod-cli
19
19
  ## Usage
20
20
 
21
21
  ```bash
22
- npx kmod add [command]
22
+ npx kumod add [command]
23
23
 
24
24
  ```
25
25
 
@@ -231,16 +231,15 @@ const validateFields = (fields: readonly (keyof T)[]): boolean => {
231
231
  };
232
232
 
233
233
 
234
-
235
234
  // import { useFormValidator, REGEXS } from '@/utils/validate/simple-validate';
236
235
 
237
236
  // const validationRules = {
238
- // email: { required: true, pattern: REGEXS.email, errorMessage: "Please enter a valid email." },
239
- // password: { required: true, minLength: 6, errorMessage: "Password must be at least 6 characters." },
237
+ // username: { required: true, pattern: REGEXS.username, errorMessage: "Username must be 3-20 alphanumeric characters." },
238
+ // password: { required: true, pattern: REGEXS.password, errorMessage: "Password must contain letters, numbers, and be at least 8 characters." },
240
239
  // };
241
240
 
242
241
  // const { values, errors, handleChange, validateAllFields } = useFormValidator(
243
- // { email: '', password: '' },
242
+ // { username: '', password: '' },
244
243
  // validationRules
245
244
  // );
246
245
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kmod-cli",
3
- "version": "1.7.6",
3
+ "version": "1.7.7",
4
4
  "description": "Stack components utilities fast setup in projects",
5
5
  "author": "kumo_d",
6
6
  "license": "MIT",