@angelrove/forecast-utils 1.1.22 → 1.1.24

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Jose Angel Romero Vegas",
3
3
  "name": "@angelrove/forecast-utils",
4
- "version": "1.1.22",
4
+ "version": "1.1.24",
5
5
  "description": "Utilities for obtaining weather and astronomy forecast data.",
6
6
  "license": "MIT",
7
7
  "publishConfig": {
@@ -16,7 +16,6 @@ import type { MoonData, MoonDataExt, MoonTimes } from "./types.js";
16
16
 
17
17
  /**
18
18
  * MoonCalc.
19
- * @ignore
20
19
  */
21
20
  export const MoonCalc = {
22
21
  data, dataExt, times, emoji, getUpOrDown,
@@ -17,7 +17,6 @@ import { TimeDateStr } from "../../utils/timehelpers";
17
17
 
18
18
  /**
19
19
  * SunCalc.
20
- * @ignore
21
20
  */
22
21
  export const SunCalc = {
23
22
  all,
package/src/index.ts CHANGED
@@ -1,3 +1,15 @@
1
+ /**
2
+ * Several utility libraries for my "tierracolora.com" project.
3
+ *
4
+ * Includes directory `images/ws` with weather images (symbols)
5
+ *
6
+ * I use private libraries for the following:
7
+ * - Astronomy calculations: `suncalc3`
8
+ *
9
+ * // Documentation
10
+ *
11
+ */
12
+
1
13
  // Astronomy
2
14
  export { MoonCalc } from "./astronomy/moon/MoonCalc";
3
15
  export { SunCalc } from "./astronomy/sun/SunCalc";