chronos-date 2.0.0 → 2.0.2
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 +9 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -60,7 +60,7 @@ Designed to go beyond the native `Date` object, it empowers you to manipulate, f
|
|
|
60
60
|
- **Plugin System:** Extend core capabilities seamlessly using `Chronos.use(plugin)`. Over a dozen official plugins exist for advanced operations like business hours, seasons, zodiacs, relative times, and more.
|
|
61
61
|
- **Time Zone Support:** Advanced formatting and tracking of UTC offsets and Native time zone properties.
|
|
62
62
|
- **Date Utilities:** Extra utilities, type guards, types and constants for light weight date operations without the need of core class.
|
|
63
|
-
- **
|
|
63
|
+
- **TypeScript IntelliSense:** Built with first-class TypeScript types and TSDoc documentation for better IDE support and autocompletion.
|
|
64
64
|
- **Cross-environment compatibility:** Works anywhere JS runs (Node.js, Browser, Deno, Bun).
|
|
65
65
|
|
|
66
66
|
---
|
|
@@ -117,6 +117,8 @@ import { MONTHS } from "chronos-date/constants";
|
|
|
117
117
|
// Plugins (imported individually)
|
|
118
118
|
import { timeZonePlugin } from "chronos-date/plugins/timeZonePlugin";
|
|
119
119
|
import { seasonPlugin } from "chronos-date/plugins/seasonPlugin";
|
|
120
|
+
// All plugin imports share the same pattern
|
|
121
|
+
import { pluginName } from "chronos-date/plugins/pluginName";
|
|
120
122
|
```
|
|
121
123
|
|
|
122
124
|
---
|
|
@@ -176,3 +178,9 @@ For full documentation, API reference, and interactive playgrounds, visit the [*
|
|
|
176
178
|
## License
|
|
177
179
|
|
|
178
180
|
This project is licensed under the [Apache License 2.0](LICENSE).
|
|
181
|
+
|
|
182
|
+
You are free to use, modify, and distribute this project under the terms of the Apache 2.0 License, provided that appropriate credit is given.
|
|
183
|
+
|
|
184
|
+
---
|
|
185
|
+
|
|
186
|
+
Built with ❤️ by [**Nazmul Hassan**](https://nazmul-nhb.dev)
|
package/package.json
CHANGED