@angelrove/forecast-utils 1.1.23 → 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.
Files changed (3) hide show
  1. package/package.json +1 -1
  2. package/src/index.ts +12 -0
  3. package/README.md +0 -13
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.23",
4
+ "version": "1.1.24",
5
5
  "description": "Utilities for obtaining weather and astronomy forecast data.",
6
6
  "license": "MIT",
7
7
  "publishConfig": {
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";
package/README.md DELETED
@@ -1,13 +0,0 @@
1
- **@angelrove/forecast-utils**
2
-
3
- ***
4
-
5
- # @angelrove/forecast-utils
6
-
7
- ## Modules
8
-
9
- - [Astronomy](docs/Astronomy/README.md)
10
- - [Geolocation](docs/Geolocation/README.md)
11
- - [index](docs/index/README.md)
12
- - [OpenMeteo](docs/OpenMeteo/README.md)
13
- - [Utils](docs/Utils/README.md)