chronos-date 2.0.0 → 2.0.1
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 +7 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -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,8 @@ 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
|
+
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.
|
|
182
|
+
|
|
183
|
+
---
|
|
184
|
+
|
|
185
|
+
Built with ❤️ by [**Nazmul Hassan**](https://nazmul-nhb.dev)
|
package/package.json
CHANGED