@oasissys/sqlcl-cli 0.1.2 → 0.2.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 +1 -1
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -38,7 +38,7 @@ Execute `npx -y @oasissys/sqlcl-cli` to get Oasis SQLcl (Oracle DB) tools.
|
|
|
38
38
|
Want the CLI on PATH and the active Oracle connection fed into every agent session?
|
|
39
39
|
|
|
40
40
|
```sh
|
|
41
|
-
npm install -g @oasissys/sqlcl-cli
|
|
41
|
+
npm install -g @oasissys/sqlcl-cli # installs `oasis-sqlcl` (and the `sqlcl-cli` alias)
|
|
42
42
|
oasis-sqlcl setup
|
|
43
43
|
```
|
|
44
44
|
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oasissys/sqlcl-cli",
|
|
3
|
-
"version": "0.1
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"packageManager": "pnpm@11.9.0",
|
|
5
5
|
"description": "oasis-sqlcl — AXI CLI for Oracle SQLcl on the Oasis databases: manage connections and run SQL with token-efficient TOON output",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
|
-
"url": "https://github.com/oasissys/sqlcl-cli.git"
|
|
9
|
+
"url": "git+https://github.com/oasissys/sqlcl-cli.git"
|
|
10
10
|
},
|
|
11
11
|
"keywords": [
|
|
12
12
|
"sqlcl",
|
|
@@ -19,7 +19,8 @@
|
|
|
19
19
|
"oasis"
|
|
20
20
|
],
|
|
21
21
|
"bin": {
|
|
22
|
-
"oasis-sqlcl": "./dist/bin/oasis-sqlcl.js"
|
|
22
|
+
"oasis-sqlcl": "./dist/bin/oasis-sqlcl.js",
|
|
23
|
+
"sqlcl-cli": "./dist/bin/oasis-sqlcl.js"
|
|
23
24
|
},
|
|
24
25
|
"files": [
|
|
25
26
|
"dist",
|