thoth-cli 0.2.5 → 0.2.6
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/dist/bin.js +2 -2
- package/package.json +1 -1
- package/scripts/postinstall.js +1 -1
package/dist/bin.js
CHANGED
|
@@ -43,7 +43,7 @@ Examples:
|
|
|
43
43
|
thoth synastry --date1 1991-07-08 --time1 14:06 --city1 "New York" --date2 2026-02-26 --time2 04:35 --city2 "New York"
|
|
44
44
|
thoth progressions --natal-date 1991-07-08 --natal-time 14:06 --city "New York" --target-date 2026-03-01
|
|
45
45
|
thoth moon
|
|
46
|
-
thoth ephemeris --body pluto`).version("0.2.
|
|
46
|
+
thoth ephemeris --body pluto`).version("0.2.6");
|
|
47
47
|
program.command("chart").description("Calculate a natal chart").requiredOption("--date <date>", "Birth date (YYYY-MM-DD)").requiredOption("--time <time>", "Birth time (HH:MM)").option("--lat <lat>", "Latitude", parseFloat).option("--lng <lng>", "Longitude", parseFloat).option("--city <city>", "City name").option("--nation <nation>", "Country code", "US").option("--name <name>", "Name", "Subject").option("--json", "Output raw JSON").option("--svg", "Output SVG chart").option("--svg-file <path>", "Save SVG to file").action(async (options) => {
|
|
48
48
|
if (!options.city && (!options.lat || !options.lng)) {
|
|
49
49
|
console.error(chalk.red("Error: Must provide either --city or both --lat and --lng"));
|
|
@@ -535,6 +535,6 @@ program.command("key").description("Symbol reference guide").action(() => {
|
|
|
535
535
|
console.log("");
|
|
536
536
|
});
|
|
537
537
|
console.log(chalk.dim(""));
|
|
538
|
-
console.log(chalk.yellow(" \u{1315D}") + chalk.dim(" thoth-cli v0.2.
|
|
538
|
+
console.log(chalk.yellow(" \u{1315D}") + chalk.dim(" thoth-cli v0.2.6"));
|
|
539
539
|
console.log(chalk.dim(""));
|
|
540
540
|
program.parse();
|
package/package.json
CHANGED
package/scripts/postinstall.js
CHANGED
|
@@ -12,7 +12,7 @@ import https from 'https';
|
|
|
12
12
|
|
|
13
13
|
const __dirname = dirname(fileURLToPath(import.meta.url));
|
|
14
14
|
|
|
15
|
-
const VERSION = '0.2.
|
|
15
|
+
const VERSION = '0.2.6';
|
|
16
16
|
const REPO = 'aklo360/thoth-cli';
|
|
17
17
|
const BASE_URL = `https://github.com/${REPO}/releases/download/v${VERSION}`;
|
|
18
18
|
|