oauth2-cli 0.1.1 → 0.1.3
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/.versionrc.json +5 -0
- package/CHANGELOG.md +15 -1
- package/package.json +10 -8
- package/src/TokenManager.ts +0 -1
- package/views/error.ejs +1 -1
package/.versionrc.json
ADDED
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,18 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
|
|
4
|
+
|
|
5
|
+
## [0.1.3](https://github.com/battis/oauth2-cli/compare/oauth2-cli/0.1.2...oauth2-cli/0.1.3) (2025-03-06)
|
|
6
|
+
|
|
7
|
+
### Patch Changes
|
|
8
|
+
|
|
9
|
+
- efd09f9: docs: fix broken package paths
|
|
10
|
+
|
|
11
|
+
## 0.1.2
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 6e6a22a: sky-api, bump deps
|
|
2
16
|
|
|
3
17
|
## 0.1.1
|
|
4
18
|
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oauth2-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Acquire API access tokens via OAuth 2.0 within CLI tools",
|
|
5
|
-
"homepage": "https://github.com/battis/
|
|
5
|
+
"homepage": "https://github.com/battis/oauth2-cli/tree/main/packages/oauth2-cli#readme",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
|
-
"url": "git+https://github.com/battis/
|
|
8
|
+
"url": "git+https://github.com/battis/oauth2-cli.git",
|
|
9
9
|
"directory": "packages/oauth2-cli"
|
|
10
10
|
},
|
|
11
11
|
"author": {
|
|
@@ -17,18 +17,19 @@
|
|
|
17
17
|
"types": "./dist/index.d.ts",
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"async-mutex": "^0.5.0",
|
|
20
|
-
"express": "^4.21.
|
|
20
|
+
"express": "^4.21.2",
|
|
21
21
|
"open": "^10.1.0",
|
|
22
|
-
"openid-client": "^6.1.
|
|
23
|
-
"@battis/oauth2-configure": "0.1.
|
|
22
|
+
"openid-client": "^6.1.7",
|
|
23
|
+
"@battis/oauth2-configure": "0.1.1"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@tsconfig/node20": "^20.1.4",
|
|
27
27
|
"@types/ejs": "^3.1.5",
|
|
28
28
|
"@types/express": "^5.0.0",
|
|
29
|
+
"commit-and-tag-version": "^12.5.0",
|
|
29
30
|
"del-cli": "^6.0.0",
|
|
30
31
|
"npm-run-all": "^4.1.5",
|
|
31
|
-
"typescript": "^5.
|
|
32
|
+
"typescript": "^5.7.2"
|
|
32
33
|
},
|
|
33
34
|
"peerDependencies": {
|
|
34
35
|
"ejs": "*"
|
|
@@ -46,6 +47,7 @@
|
|
|
46
47
|
"clean": "del ./dist",
|
|
47
48
|
"build": "run-s build:*",
|
|
48
49
|
"build:clean": "run-s clean",
|
|
49
|
-
"build:compile": "tsc"
|
|
50
|
+
"build:compile": "tsc",
|
|
51
|
+
"release": "commit-and-tag-version"
|
|
50
52
|
}
|
|
51
53
|
}
|
package/src/TokenManager.ts
CHANGED
package/views/error.ejs
CHANGED
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
<div class="wrapper">
|
|
32
32
|
<div class="center container">
|
|
33
33
|
<h1>Error Authorizing</h1>
|
|
34
|
-
<div class="alert alert-
|
|
34
|
+
<div class="alert alert-danger" role="alert">
|
|
35
35
|
<% if (typeof error === 'string') { %><%= error %><<% } else { %>
|
|
36
36
|
<pre><%= JSON.stringify(error,null,2) %></pre>
|
|
37
37
|
<% } %>
|