oauth-init 0.16.0 → 0.17.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/dist/index.js +3 -3
- package/package.json +3 -2
package/dist/index.js
CHANGED
|
@@ -9262,7 +9262,7 @@ async function askSaveOption() {
|
|
|
9262
9262
|
});
|
|
9263
9263
|
}
|
|
9264
9264
|
|
|
9265
|
-
// src/lib/providers/google
|
|
9265
|
+
// src/lib/providers/google.ts
|
|
9266
9266
|
function logStep(message) {
|
|
9267
9267
|
if (!globalConfig.quiet)
|
|
9268
9268
|
R2.step(message);
|
|
@@ -9428,7 +9428,7 @@ ${_appName}`, "Save this URL");
|
|
|
9428
9428
|
}
|
|
9429
9429
|
}
|
|
9430
9430
|
|
|
9431
|
-
// src/lib/providers/github
|
|
9431
|
+
// src/lib/providers/github.ts
|
|
9432
9432
|
import http from "http";
|
|
9433
9433
|
function logStep2(message) {
|
|
9434
9434
|
if (!globalConfig.quiet)
|
|
@@ -9581,7 +9581,7 @@ ${callbackUrl}`, "Save this URL");
|
|
|
9581
9581
|
}
|
|
9582
9582
|
}
|
|
9583
9583
|
|
|
9584
|
-
// src/lib/providers/discord
|
|
9584
|
+
// src/lib/providers/discord.ts
|
|
9585
9585
|
function logStep3(message) {
|
|
9586
9586
|
if (!globalConfig.quiet)
|
|
9587
9587
|
R2.step(message);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oauth-init",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.17.0",
|
|
4
4
|
"description": "CLI for setting up OAuth providers for your project",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -12,7 +12,8 @@
|
|
|
12
12
|
"build": "bun build ./src/index.ts --outdir ./dist --target node",
|
|
13
13
|
"dev": "bun ./src/index.ts --watch",
|
|
14
14
|
"prepare": "bun run build",
|
|
15
|
-
"test": "bun test"
|
|
15
|
+
"test": "bun test",
|
|
16
|
+
"start": "node dist/index.js"
|
|
16
17
|
},
|
|
17
18
|
"keywords": [
|
|
18
19
|
"cli",
|