sweph 2.10.3-4 → 2.10.3-b-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 +3 -0
- package/package.json +3 -3
- package/swisseph/swecl.c +6428 -6430
- package/swisseph/swehel.c +3511 -3522
- package/swisseph/swehouse.c +3143 -3140
- package/swisseph/swejpl.c +958 -952
- package/swisseph/swemmoon.c +1930 -1930
- package/swisseph/sweodef.h +326 -345
- package/swisseph/sweph.c +8614 -8615
- package/swisseph/sweph.h +849 -849
- package/swisseph/swephexp.h +1020 -1025
- package/swisseph/swephlib.c +4634 -4634
package/README.md
CHANGED
|
@@ -38,6 +38,9 @@ This library is version locked to the Swiss Ephemeris in addition to its own rev
|
|
|
38
38
|
|
|
39
39
|
Updates to this library will be released under new revisions, while updates to Swiss Ephemeris will be released under matching SemVer versions.
|
|
40
40
|
|
|
41
|
+
**Current Version: 2.10.3-b-1**
|
|
42
|
+
**Equivalent to Swiss Ephemeris version: 2.10.03b revision 1**
|
|
43
|
+
|
|
41
44
|
## Documentation
|
|
42
45
|
|
|
43
46
|
This library is fully typed and documented via intellisense. To access its documentation simply hover over its functions in your favorite code editor:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sweph",
|
|
3
|
-
"version": "2.10.3-
|
|
3
|
+
"version": "2.10.3-b-1",
|
|
4
4
|
"description": "The definitive Swiss Ephemeris bindings for Node.js",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"sweph",
|
|
@@ -44,9 +44,9 @@
|
|
|
44
44
|
"test": "node -e \"const s = require('./'); const c = s.calc(2222222,0,4); console.log('OK')\""
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"node-addon-api": "
|
|
47
|
+
"node-addon-api": "^8.3.1"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"eslint": "^
|
|
50
|
+
"eslint": "^9.27.0"
|
|
51
51
|
}
|
|
52
52
|
}
|