agendex-cli 1.4.0 → 2.0.0
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 +26 -0
- package/dist/cli.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,6 +4,20 @@ Node-compatible Agendex CLI for browser login, opening the web app, one-shot syn
|
|
|
4
4
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
7
|
+
Recommended one-line installer:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
# macOS / Linux
|
|
11
|
+
curl -fsSL https://agendex.dev/install.sh | bash
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
```powershell
|
|
15
|
+
# Windows (PowerShell)
|
|
16
|
+
irm https://agendex.dev/install.ps1 | iex
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
Or install directly with your package manager:
|
|
20
|
+
|
|
7
21
|
```bash
|
|
8
22
|
npm install -g agendex-cli
|
|
9
23
|
pnpm add -g agendex-cli
|
|
@@ -11,6 +25,18 @@ yarn global add agendex-cli
|
|
|
11
25
|
bun install -g agendex-cli
|
|
12
26
|
```
|
|
13
27
|
|
|
28
|
+
Installer options:
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
curl -fsSL https://agendex.dev/install.sh | bash -s -- --version 1.2.3
|
|
32
|
+
curl -fsSL https://agendex.dev/install.sh | bash -s -- --pm pnpm
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
```powershell
|
|
36
|
+
& ([scriptblock]::Create((irm https://agendex.dev/install.ps1))) -Version 1.2.3
|
|
37
|
+
& ([scriptblock]::Create((irm https://agendex.dev/install.ps1))) -Pm pnpm
|
|
38
|
+
```
|
|
39
|
+
|
|
14
40
|
## Commands
|
|
15
41
|
|
|
16
42
|
```bash
|
package/dist/cli.js
CHANGED
|
@@ -5744,7 +5744,7 @@ import { join as join15 } from "node:path";
|
|
|
5744
5744
|
// package.json
|
|
5745
5745
|
var package_default = {
|
|
5746
5746
|
name: "agendex-cli",
|
|
5747
|
-
version: "
|
|
5747
|
+
version: "2.0.0",
|
|
5748
5748
|
description: "Agendex CLI for login, sync, and daemon workflows",
|
|
5749
5749
|
homepage: "https://github.com/Tyru5/Agendex#readme",
|
|
5750
5750
|
bugs: {
|