@helpers4/all 2.0.0-alpha.9 → 2.0.0-beta.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.
package/README.md CHANGED
@@ -16,8 +16,8 @@ This package provides access to all helpers4 utilities through dependencies:
16
16
 
17
17
  ```typescript
18
18
  // Install @helpers4/all, then use individual category packages
19
- import { arrayEquals, intersection } from '@helpers4/array';
20
- import { labelize, errorToReadableMessage } from '@helpers4/string';
19
+ import { equals, intersection } from '@helpers4/array';
20
+ import { titleCase, extractErrorMessage } from '@helpers4/string';
21
21
  import { cleanPath, withTrailingSlash } from '@helpers4/url';
22
22
  // ... and so on
23
23
  ```
@@ -27,8 +27,12 @@ import { cleanPath, withTrailingSlash } from '@helpers4/url';
27
27
  This package includes all the following helpers4 categories:
28
28
 
29
29
  - **@helpers4/array**: array utilities
30
+ - **@helpers4/ci**: ci utilities
31
+ - **@helpers4/commit**: commit utilities
30
32
  - **@helpers4/date**: date utilities
31
33
  - **@helpers4/function**: function utilities
34
+ - **@helpers4/id**: id utilities
35
+ - **@helpers4/markdown**: markdown utilities
32
36
  - **@helpers4/number**: number utilities
33
37
  - **@helpers4/object**: object utilities
34
38
  - **@helpers4/observable**: observable utilities
@@ -43,14 +47,18 @@ This package includes all the following helpers4 categories:
43
47
  | Name | Package | Source Code | Description |
44
48
  |------|---------|-------------|-------------|
45
49
  | array | [@helpers4/array](https://www.npmjs.com/package/@helpers4/array) | [Source](https://github.com/helpers4/helpers4/tree/main/helpers/array) | Array manipulation utilities |
46
- | date | [@helpers4/date](https://www.npmjs.com/package/@helpers4/date) | [Source](https://github.com/helpers4/helpers4/tree/main/helpers/date) | date utilities |
50
+ | ci | [@helpers4/ci](https://www.npmjs.com/package/@helpers4/ci) | [Source](https://github.com/helpers4/helpers4/tree/main/helpers/ci) | CI/CD workflow status utilities |
51
+ | commit | [@helpers4/commit](https://www.npmjs.com/package/@helpers4/commit) | [Source](https://github.com/helpers4/helpers4/tree/main/helpers/commit) | Conventional Commits parsing and analysis |
52
+ | date | [@helpers4/date](https://www.npmjs.com/package/@helpers4/date) | [Source](https://github.com/helpers4/helpers4/tree/main/helpers/date) | Date and time utility functions |
47
53
  | function | [@helpers4/function](https://www.npmjs.com/package/@helpers4/function) | [Source](https://github.com/helpers4/helpers4/tree/main/helpers/function) | Function utilities and type guards |
48
- | number | [@helpers4/number](https://www.npmjs.com/package/@helpers4/number) | [Source](https://github.com/helpers4/helpers4/tree/main/helpers/number) | number utilities |
54
+ | id | [@helpers4/id](https://www.npmjs.com/package/@helpers4/id) | [Source](https://github.com/helpers4/helpers4/tree/main/helpers/id) | Unique identifier generation utilities |
55
+ | markdown | [@helpers4/markdown](https://www.npmjs.com/package/@helpers4/markdown) | [Source](https://github.com/helpers4/helpers4/tree/main/helpers/markdown) | Markdown formatting and escaping utilities |
56
+ | number | [@helpers4/number](https://www.npmjs.com/package/@helpers4/number) | [Source](https://github.com/helpers4/helpers4/tree/main/helpers/number) | Number utility functions and validation |
49
57
  | object | [@helpers4/object](https://www.npmjs.com/package/@helpers4/object) | [Source](https://github.com/helpers4/helpers4/tree/main/helpers/object) | Object manipulation utilities |
50
58
  | observable | [@helpers4/observable](https://www.npmjs.com/package/@helpers4/observable) | [Source](https://github.com/helpers4/helpers4/tree/main/helpers/observable) | Observable utilities and combinators |
51
59
  | promise | [@helpers4/promise](https://www.npmjs.com/package/@helpers4/promise) | [Source](https://github.com/helpers4/helpers4/tree/main/helpers/promise) | Promise utilities and error handling |
52
60
  | string | [@helpers4/string](https://www.npmjs.com/package/@helpers4/string) | [Source](https://github.com/helpers4/helpers4/tree/main/helpers/string) | String manipulation and formatting utilities |
53
- | type | [@helpers4/type](https://www.npmjs.com/package/@helpers4/type) | [Source](https://github.com/helpers4/helpers4/tree/main/helpers/type) | type utilities |
61
+ | type | [@helpers4/type](https://www.npmjs.com/package/@helpers4/type) | [Source](https://github.com/helpers4/helpers4/tree/main/helpers/type) | Type checking and validation utilities |
54
62
  | url | [@helpers4/url](https://www.npmjs.com/package/@helpers4/url) | [Source](https://github.com/helpers4/helpers4/tree/main/helpers/url) | URL parsing and manipulation utilities |
55
63
  | version | [@helpers4/version](https://www.npmjs.com/package/@helpers4/version) | [Source](https://github.com/helpers4/helpers4/tree/main/helpers/version) | Version string manipulation utilities |
56
64
 
@@ -59,8 +67,12 @@ This package includes all the following helpers4 categories:
59
67
  You can also install individual categories if you prefer:
60
68
 
61
69
  - `pnpm install @helpers4/array`
70
+ - `pnpm install @helpers4/ci`
71
+ - `pnpm install @helpers4/commit`
62
72
  - `pnpm install @helpers4/date`
63
73
  - `pnpm install @helpers4/function`
74
+ - `pnpm install @helpers4/id`
75
+ - `pnpm install @helpers4/markdown`
64
76
  - `pnpm install @helpers4/number`
65
77
  - `pnpm install @helpers4/object`
66
78
  - `pnpm install @helpers4/observable`
@@ -72,4 +84,4 @@ You can also install individual categories if you prefer:
72
84
 
73
85
  ## License
74
86
 
75
- LGPL-3.0
87
+ LGPL-3.0