dargstack_rgen 0.9.0 → 0.9.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/.github/workflows/ci.yml
CHANGED
|
@@ -9,15 +9,13 @@ on:
|
|
|
9
9
|
jobs:
|
|
10
10
|
build:
|
|
11
11
|
name: Build
|
|
12
|
-
uses: dargmuesli/github-actions/.github/workflows/docker-ghcr.yml@0.35.
|
|
12
|
+
uses: dargmuesli/github-actions/.github/workflows/docker-ghcr.yml@0.35.5
|
|
13
13
|
permissions:
|
|
14
14
|
packages: write
|
|
15
|
-
with:
|
|
16
|
-
ARTIFACT_PATH: .output/public
|
|
17
15
|
release-semantic:
|
|
18
16
|
needs: build
|
|
19
17
|
name: Release (semantic)
|
|
20
|
-
uses: dargmuesli/github-actions/.github/workflows/release-semantic.yml@0.35.
|
|
18
|
+
uses: dargmuesli/github-actions/.github/workflows/release-semantic.yml@0.35.5
|
|
21
19
|
secrets:
|
|
22
20
|
GH_TOKEN: ${{ secrets.GH_TOKEN }}
|
|
23
21
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
@@ -3,11 +3,12 @@ name: 'Release: Scheduled'
|
|
|
3
3
|
on:
|
|
4
4
|
schedule:
|
|
5
5
|
- cron: '0 0 * * 2' # Every Tuesday at 00:00 AM UTC on the default branch
|
|
6
|
+
workflow_dispatch:
|
|
6
7
|
|
|
7
8
|
jobs:
|
|
8
9
|
release-schedule:
|
|
9
|
-
name: Release
|
|
10
|
-
uses: dargmuesli/github-actions/.github/workflows/release-schedule.yml@0.35.
|
|
10
|
+
name: 'Release: Scheduled'
|
|
11
|
+
uses: dargmuesli/github-actions/.github/workflows/release-schedule.yml@0.35.5
|
|
11
12
|
secrets:
|
|
12
13
|
GH_TOKEN: ${{ secrets.GH_TOKEN }}
|
|
13
14
|
with:
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [0.9.1](https://github.com/dargstack/dargstack_rgen/compare/0.9.0...0.9.1) (2023-04-04)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* schedule release ([5bc831b](https://github.com/dargstack/dargstack_rgen/commit/5bc831b51e4020acef424e88281a90809a4026e9))
|
|
7
|
+
|
|
1
8
|
# [0.9.0](https://github.com/dargstack/dargstack_rgen/compare/0.8.9...0.9.0) (2023-03-27)
|
|
2
9
|
|
|
3
10
|
|
package/Dockerfile
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
FROM node:19.8.1-alpine@sha256:
|
|
1
|
+
FROM node:19.8.1-alpine@sha256:ce9dd01fefe302dce994c07fb32b55403a79acd693c9d841571dc14fc47826c8 AS development
|
|
2
2
|
|
|
3
3
|
WORKDIR /srv/app/
|
|
4
4
|
|
|
@@ -7,7 +7,7 @@ VOLUME /srv/app
|
|
|
7
7
|
ENTRYPOINT ["node", "./src/generator.cjs"]
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
FROM node:19.8.1-alpine@sha256:
|
|
10
|
+
FROM node:19.8.1-alpine@sha256:ce9dd01fefe302dce994c07fb32b55403a79acd693c9d841571dc14fc47826c8 AS prepare
|
|
11
11
|
|
|
12
12
|
WORKDIR /srv/app/
|
|
13
13
|
|
|
@@ -21,7 +21,7 @@ COPY ./ ./
|
|
|
21
21
|
RUN pnpm install --offline
|
|
22
22
|
|
|
23
23
|
|
|
24
|
-
FROM node:19.8.1-alpine@sha256:
|
|
24
|
+
FROM node:19.8.1-alpine@sha256:ce9dd01fefe302dce994c07fb32b55403a79acd693c9d841571dc14fc47826c8 AS build
|
|
25
25
|
|
|
26
26
|
WORKDIR /srv/app/
|
|
27
27
|
|
|
@@ -33,7 +33,7 @@ RUN npm install -g pnpm && \
|
|
|
33
33
|
pnpm install --offline
|
|
34
34
|
|
|
35
35
|
|
|
36
|
-
FROM node:19.8.1-alpine@sha256:
|
|
36
|
+
FROM node:19.8.1-alpine@sha256:ce9dd01fefe302dce994c07fb32b55403a79acd693c9d841571dc14fc47826c8 AS test
|
|
37
37
|
|
|
38
38
|
WORKDIR /srv/app/
|
|
39
39
|
|
|
@@ -43,7 +43,7 @@ RUN npm install -g pnpm && \
|
|
|
43
43
|
pnpm run test
|
|
44
44
|
|
|
45
45
|
|
|
46
|
-
FROM node:19.8.1-alpine@sha256:
|
|
46
|
+
FROM node:19.8.1-alpine@sha256:ce9dd01fefe302dce994c07fb32b55403a79acd693c9d841571dc14fc47826c8 AS collect
|
|
47
47
|
|
|
48
48
|
WORKDIR /srv/app/
|
|
49
49
|
|
|
@@ -51,7 +51,7 @@ COPY --from=build /srv/app/ /srv/app/
|
|
|
51
51
|
COPY --from=test /srv/app/package.json /tmp/package.json
|
|
52
52
|
|
|
53
53
|
|
|
54
|
-
FROM node:19.8.1-alpine@sha256:
|
|
54
|
+
FROM node:19.8.1-alpine@sha256:ce9dd01fefe302dce994c07fb32b55403a79acd693c9d841571dc14fc47826c8 AS production
|
|
55
55
|
|
|
56
56
|
WORKDIR /srv/app/
|
|
57
57
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dargstack_rgen",
|
|
3
|
-
"version": "0.9.
|
|
4
|
-
"scheduleVersion": "0.8.9",
|
|
3
|
+
"version": "0.9.1",
|
|
5
4
|
"description": "Generates a DargStack stack project readme.",
|
|
6
5
|
"main": "src/generator.cjs",
|
|
7
6
|
"repository": "https://github.com/dargstack/dargstack_rgen.git",
|
|
@@ -14,7 +13,7 @@
|
|
|
14
13
|
"engines": {
|
|
15
14
|
"node": "19"
|
|
16
15
|
},
|
|
17
|
-
"packageManager": "pnpm@
|
|
16
|
+
"packageManager": "pnpm@8.1.0",
|
|
18
17
|
"scripts": {
|
|
19
18
|
"lint": "eslint --ext .js,.cjs .",
|
|
20
19
|
"prepare": "if [ \"$NODE_ENV\" != \"production\" ]; then husky install && shx rm -rf .git/hooks && shx ln -s ../.husky .git/hooks; fi",
|
|
@@ -28,9 +27,9 @@
|
|
|
28
27
|
"yargs": "17.7.1"
|
|
29
28
|
},
|
|
30
29
|
"devDependencies": {
|
|
31
|
-
"@commitlint/cli": "17.5.
|
|
30
|
+
"@commitlint/cli": "17.5.1",
|
|
32
31
|
"@commitlint/config-conventional": "17.4.4",
|
|
33
|
-
"eslint": "8.
|
|
32
|
+
"eslint": "8.37.0",
|
|
34
33
|
"eslint-config-prettier": "8.8.0",
|
|
35
34
|
"eslint-plugin-node": "11.1.0",
|
|
36
35
|
"eslint-plugin-prettier": "4.2.1",
|
|
@@ -77,7 +77,7 @@ This project is deployed in accordance to the [DargStack template](https://githu
|
|
|
77
77
|
|
|
78
78
|
- ### `traefik_certs-dumper` 
|
|
79
79
|
|
|
80
|
-
|
|
80
|
+
You cannot access the reverse proxy's certificate helper directly.
|
|
81
81
|
|
|
82
82
|
|
|
83
83
|
## volumes
|
|
@@ -19,7 +19,7 @@ services:
|
|
|
19
19
|
volumes:
|
|
20
20
|
- postgres_data:/var/lib/postgresql/data/
|
|
21
21
|
traefik_certs-dumper:
|
|
22
|
-
#
|
|
22
|
+
# You cannot access the reverse proxy's certificate helper directly.
|
|
23
23
|
image: ldez/traefik-certs-dumper:v2.8.1@sha256:2734462fc8290feab0e34a00d5f3e4992ba74f8e3712d74efff7ae703d0e7e87
|
|
24
24
|
volumes:
|
|
25
25
|
- acme_data:/etc/traefik/acme/
|