@helpers4/all 2.0.0-beta.0 → 2.0.0

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
@@ -27,10 +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
30
31
  - **@helpers4/commit**: commit utilities
31
32
  - **@helpers4/date**: date utilities
32
33
  - **@helpers4/function**: function utilities
33
- - **@helpers4/math**: math utilities
34
+ - **@helpers4/id**: id utilities
35
+ - **@helpers4/markdown**: markdown utilities
34
36
  - **@helpers4/number**: number utilities
35
37
  - **@helpers4/object**: object utilities
36
38
  - **@helpers4/observable**: observable utilities
@@ -45,10 +47,12 @@ This package includes all the following helpers4 categories:
45
47
  | Name | Package | Source Code | Description |
46
48
  |------|---------|-------------|-------------|
47
49
  | array | [@helpers4/array](https://www.npmjs.com/package/@helpers4/array) | [Source](https://github.com/helpers4/helpers4/tree/main/helpers/array) | Array manipulation 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 |
48
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 |
49
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 |
50
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 |
51
- | math | [@helpers4/math](https://www.npmjs.com/package/@helpers4/math) | [Source](https://github.com/helpers4/helpers4/tree/main/helpers/math) | Mathematical utility functions and calculations |
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 |
52
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 |
53
57
  | object | [@helpers4/object](https://www.npmjs.com/package/@helpers4/object) | [Source](https://github.com/helpers4/helpers4/tree/main/helpers/object) | Object manipulation utilities |
54
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 |
@@ -63,10 +67,12 @@ This package includes all the following helpers4 categories:
63
67
  You can also install individual categories if you prefer:
64
68
 
65
69
  - `pnpm install @helpers4/array`
70
+ - `pnpm install @helpers4/ci`
66
71
  - `pnpm install @helpers4/commit`
67
72
  - `pnpm install @helpers4/date`
68
73
  - `pnpm install @helpers4/function`
69
- - `pnpm install @helpers4/math`
74
+ - `pnpm install @helpers4/id`
75
+ - `pnpm install @helpers4/markdown`
70
76
  - `pnpm install @helpers4/number`
71
77
  - `pnpm install @helpers4/object`
72
78
  - `pnpm install @helpers4/observable`