@skriptfabrik/elements-cli 0.5.1 → 0.5.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/.github/dependabot.yaml +8 -14
- package/.github/workflows/ci.yml +8 -8
- package/Dockerfile +1 -1
- package/README.md +2 -2
- package/package.json +6 -6
package/.github/dependabot.yaml
CHANGED
|
@@ -9,31 +9,25 @@ registries:
|
|
|
9
9
|
replaces-base: true
|
|
10
10
|
|
|
11
11
|
updates:
|
|
12
|
-
- package-ecosystem: '
|
|
12
|
+
- package-ecosystem: 'docker'
|
|
13
13
|
directory: '/'
|
|
14
14
|
reviewers:
|
|
15
|
-
- 'skriptfabrik/
|
|
15
|
+
- 'skriptfabrik/docker-maintainers'
|
|
16
|
+
registries:
|
|
17
|
+
- 'dockerhub'
|
|
16
18
|
schedule:
|
|
17
19
|
interval: 'weekly'
|
|
18
|
-
time: '08:00'
|
|
19
|
-
timezone: 'Europe/Berlin'
|
|
20
20
|
|
|
21
|
-
- package-ecosystem: '
|
|
21
|
+
- package-ecosystem: 'github-actions'
|
|
22
22
|
directory: '/'
|
|
23
23
|
reviewers:
|
|
24
|
-
- 'skriptfabrik/
|
|
24
|
+
- 'skriptfabrik/github-actions-maintainers'
|
|
25
25
|
schedule:
|
|
26
26
|
interval: 'weekly'
|
|
27
|
-
time: '08:00'
|
|
28
|
-
timezone: 'Europe/Berlin'
|
|
29
27
|
|
|
30
|
-
- package-ecosystem: '
|
|
28
|
+
- package-ecosystem: 'npm'
|
|
31
29
|
directory: '/'
|
|
32
30
|
reviewers:
|
|
33
|
-
- 'skriptfabrik/
|
|
34
|
-
registries:
|
|
35
|
-
- 'dockerhub'
|
|
31
|
+
- 'skriptfabrik/npm-maintainers'
|
|
36
32
|
schedule:
|
|
37
33
|
interval: 'weekly'
|
|
38
|
-
time: '08:00'
|
|
39
|
-
timezone: 'Europe/Berlin'
|
package/.github/workflows/ci.yml
CHANGED
|
@@ -19,12 +19,12 @@ jobs:
|
|
|
19
19
|
|
|
20
20
|
steps:
|
|
21
21
|
- name: Checkout
|
|
22
|
-
uses: actions/checkout@
|
|
22
|
+
uses: actions/checkout@v4
|
|
23
23
|
with:
|
|
24
24
|
fetch-depth: 0
|
|
25
25
|
|
|
26
26
|
- name: Install Node.js version ${{ env.NODE_VERSION }}
|
|
27
|
-
uses: actions/setup-node@
|
|
27
|
+
uses: actions/setup-node@v4
|
|
28
28
|
with:
|
|
29
29
|
node-version: ${{ env.NODE_VERSION }}
|
|
30
30
|
|
|
@@ -48,27 +48,27 @@ jobs:
|
|
|
48
48
|
npm version from-git --no-git-tag-version
|
|
49
49
|
|
|
50
50
|
- name: Publish package
|
|
51
|
-
uses: JS-DevTools/npm-publish@
|
|
51
|
+
uses: JS-DevTools/npm-publish@v3
|
|
52
52
|
if: github.ref_type == 'tag'
|
|
53
53
|
with:
|
|
54
54
|
access: public
|
|
55
55
|
token: ${{ secrets.NPM_TOKEN }}
|
|
56
56
|
|
|
57
57
|
- name: Log in to DockerHub
|
|
58
|
-
uses: docker/login-action@
|
|
58
|
+
uses: docker/login-action@v3
|
|
59
59
|
with:
|
|
60
60
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
61
61
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
62
62
|
|
|
63
63
|
- name: Set up QEMU
|
|
64
|
-
uses: docker/setup-qemu-action@
|
|
64
|
+
uses: docker/setup-qemu-action@v3
|
|
65
65
|
|
|
66
66
|
- name: Set up Docker Buildx
|
|
67
|
-
uses: docker/setup-buildx-action@
|
|
67
|
+
uses: docker/setup-buildx-action@v3
|
|
68
68
|
|
|
69
69
|
- name: Build and Push latest Docker image
|
|
70
70
|
if: github.ref_name == 'main'
|
|
71
|
-
uses: docker/build-push-action@
|
|
71
|
+
uses: docker/build-push-action@v6
|
|
72
72
|
with:
|
|
73
73
|
build-args: |-
|
|
74
74
|
BUILDKIT_INLINE_CACHE=${{ env.DOCKER_BUILDKIT_INLINE_CACHE }}
|
|
@@ -90,7 +90,7 @@ jobs:
|
|
|
90
90
|
|
|
91
91
|
- name: Build and Push Docker image release version
|
|
92
92
|
if: github.ref_type == 'tag'
|
|
93
|
-
uses: docker/build-push-action@
|
|
93
|
+
uses: docker/build-push-action@v6
|
|
94
94
|
with:
|
|
95
95
|
build-args: |-
|
|
96
96
|
BUILDKIT_INLINE_CACHE=${{ env.DOCKER_BUILDKIT_INLINE_CACHE }}
|
package/Dockerfile
CHANGED
package/README.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
+
# Elements CLI
|
|
2
|
+
|
|
1
3
|
[](https://www.npmjs.com/package/@skriptfabrik/elements-cli)
|
|
2
4
|
[](https://www.npmjs.com/package/@skriptfabrik/elements-cli)
|
|
3
5
|
[](https://github.com/skriptfabrik/elements-cli/actions/workflows/ci.yml)
|
|
4
6
|
|
|
5
|
-
# Elements CLI
|
|
6
|
-
|
|
7
7
|
> The missing CLI for beautiful, interactive API docs powered by with [Stoplight Elements](https://github.com/stoplightio/elements)
|
|
8
8
|
|
|
9
9
|
## Installation
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skriptfabrik/elements-cli",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.2",
|
|
4
4
|
"description": "The missing CLI for beautiful, interactive API docs powered by with Stoplight Elements",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"stoplight",
|
|
@@ -21,17 +21,17 @@
|
|
|
21
21
|
},
|
|
22
22
|
"license": "MIT",
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@stoplight/elements": "
|
|
24
|
+
"@stoplight/elements": "8.4.7",
|
|
25
25
|
"chalk": "^5.2.0",
|
|
26
|
-
"chokidar": "^
|
|
26
|
+
"chokidar": "^4.0.0",
|
|
27
27
|
"cors-anywhere": "~0.4.4",
|
|
28
|
-
"express": "^4.
|
|
29
|
-
"express-handlebars": "^
|
|
28
|
+
"express": "^4.19.2",
|
|
29
|
+
"express-handlebars": "^8.0.1",
|
|
30
30
|
"handlebars": "^4.7.7",
|
|
31
31
|
"http-graceful-shutdown": "^3.1.12",
|
|
32
32
|
"livereload-js": "^4.0.1",
|
|
33
33
|
"minimist": "^1.2.7",
|
|
34
|
-
"send": "~
|
|
34
|
+
"send": "~1.1.0",
|
|
35
35
|
"ws": "^8.13.0"
|
|
36
36
|
},
|
|
37
37
|
"bin": {
|