@corigin/cli 0.1.0 → 0.1.2
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/main.js +1 -1
- package/package.json +1 -14
package/dist/main.js
CHANGED
|
@@ -1028,7 +1028,7 @@ function resolveGitCredentialRepo(input) {
|
|
|
1028
1028
|
}
|
|
1029
1029
|
function createCoriginProgram(deps = {}) {
|
|
1030
1030
|
const program = addCliGlobalOptions(
|
|
1031
|
-
new Command().name("corigin").description("Corigin command-line interface").version("0.1.
|
|
1031
|
+
new Command().name("corigin").description("Corigin command-line interface").version("0.1.2")
|
|
1032
1032
|
);
|
|
1033
1033
|
if (deps.exitOverride !== false) program.exitOverride();
|
|
1034
1034
|
addCliGlobalOptions(program.command("login")).option("--no-open", "Print the verification URL without opening a browser").option(
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@corigin/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"bin": {
|
|
5
5
|
"corigin": "./dist/main.js"
|
|
6
6
|
},
|
|
@@ -8,9 +8,6 @@
|
|
|
8
8
|
"dist"
|
|
9
9
|
],
|
|
10
10
|
"type": "module",
|
|
11
|
-
"exports": {
|
|
12
|
-
"./main": "./src/main.ts"
|
|
13
|
-
},
|
|
14
11
|
"publishConfig": {
|
|
15
12
|
"access": "public"
|
|
16
13
|
},
|
|
@@ -18,15 +15,5 @@
|
|
|
18
15
|
"commander": "14.0.3",
|
|
19
16
|
"smol-toml": "1.6.1",
|
|
20
17
|
"zod": "^4.3.6"
|
|
21
|
-
},
|
|
22
|
-
"devDependencies": {
|
|
23
|
-
"@hey-api/openapi-ts": "0.97.1",
|
|
24
|
-
"@types/node": "^24.12.0",
|
|
25
|
-
"esbuild": "^0.25.10",
|
|
26
|
-
"typescript": "^5.9.3"
|
|
27
|
-
},
|
|
28
|
-
"scripts": {
|
|
29
|
-
"build": "esbuild src/main.ts --bundle --packages=external --platform=node --format=esm --outfile=dist/main.js",
|
|
30
|
-
"typecheck": "tsc --noEmit"
|
|
31
18
|
}
|
|
32
19
|
}
|