dargstack_rgen 0.9.27 → 0.9.29
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/{.commitlintrc.cjs → .commitlintrc.js} +2 -2
- package/.github/workflows/ci.yml +2 -2
- package/.github/workflows/release-schedule.yml +1 -1
- package/.husky/commit-msg +1 -1
- package/CHANGELOG.md +14 -0
- package/Dockerfile +6 -6
- package/package.json +21 -21
- package/test/example_stack/src/development/stack.yml +2 -2
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
|
|
1
|
+
import commitlintConfigConventional from '@commitlint/config-conventional'
|
|
2
2
|
|
|
3
3
|
const ruleMaxLineLength =
|
|
4
4
|
commitlintConfigConventional.rules['body-max-line-length']
|
|
5
5
|
|
|
6
6
|
ruleMaxLineLength[0] = process.env.CI === 'true' ? 1 : 2
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
export default {
|
|
9
9
|
extends: ['@commitlint/config-conventional'],
|
|
10
10
|
rules: {
|
|
11
11
|
'body-max-line-length': ruleMaxLineLength,
|
package/.github/workflows/ci.yml
CHANGED
|
@@ -9,13 +9,13 @@ on:
|
|
|
9
9
|
jobs:
|
|
10
10
|
build:
|
|
11
11
|
name: Build
|
|
12
|
-
uses: dargmuesli/github-actions/.github/workflows/docker.yml@1.7.
|
|
12
|
+
uses: dargmuesli/github-actions/.github/workflows/docker.yml@1.7.5
|
|
13
13
|
permissions:
|
|
14
14
|
packages: write
|
|
15
15
|
release-semantic:
|
|
16
16
|
needs: build
|
|
17
17
|
name: Release (semantic)
|
|
18
|
-
uses: dargmuesli/github-actions/.github/workflows/release-semantic.yml@1.7.
|
|
18
|
+
uses: dargmuesli/github-actions/.github/workflows/release-semantic.yml@1.7.5
|
|
19
19
|
permissions:
|
|
20
20
|
contents: write
|
|
21
21
|
secrets:
|
|
@@ -8,7 +8,7 @@ on:
|
|
|
8
8
|
jobs:
|
|
9
9
|
release-schedule:
|
|
10
10
|
name: 'Release: Scheduled'
|
|
11
|
-
uses: dargmuesli/github-actions/.github/workflows/release-schedule.yml@1.7.
|
|
11
|
+
uses: dargmuesli/github-actions/.github/workflows/release-schedule.yml@1.7.5
|
|
12
12
|
secrets:
|
|
13
13
|
PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
|
|
14
14
|
with:
|
package/.husky/commit-msg
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
pnpm commitlint --
|
|
1
|
+
pnpm commitlint --edit "$1"
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [0.9.29](https://github.com/dargstack/dargstack_rgen/compare/0.9.28...0.9.29) (2024-03-19)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* schedule release ([02fb7fc](https://github.com/dargstack/dargstack_rgen/commit/02fb7fc87aeaa914b6b0ac503dd5c6ebe26cc4e6))
|
|
7
|
+
|
|
8
|
+
## [0.9.28](https://github.com/dargstack/dargstack_rgen/compare/0.9.27...0.9.28) (2024-03-05)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* schedule release ([6fe58ee](https://github.com/dargstack/dargstack_rgen/commit/6fe58ee3c9fcf04b28f92fce31030b1b92f8052e))
|
|
14
|
+
|
|
1
15
|
## [0.9.27](https://github.com/dargstack/dargstack_rgen/compare/0.9.26...0.9.27) (2024-02-20)
|
|
2
16
|
|
|
3
17
|
|
package/Dockerfile
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
FROM node:20.11.1-alpine@sha256:
|
|
1
|
+
FROM node:20.11.1-alpine@sha256:bf77dc26e48ea95fca9d1aceb5acfa69d2e546b765ec2abfb502975f1a2d4def 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:20.11.1-alpine@sha256:
|
|
10
|
+
FROM node:20.11.1-alpine@sha256:bf77dc26e48ea95fca9d1aceb5acfa69d2e546b765ec2abfb502975f1a2d4def 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:20.11.1-alpine@sha256:
|
|
24
|
+
FROM node:20.11.1-alpine@sha256:bf77dc26e48ea95fca9d1aceb5acfa69d2e546b765ec2abfb502975f1a2d4def AS build
|
|
25
25
|
|
|
26
26
|
WORKDIR /srv/app/
|
|
27
27
|
|
|
@@ -33,7 +33,7 @@ RUN corepack enable && \
|
|
|
33
33
|
pnpm install --offline --ignore-scripts
|
|
34
34
|
|
|
35
35
|
|
|
36
|
-
FROM node:20.11.1-alpine@sha256:
|
|
36
|
+
FROM node:20.11.1-alpine@sha256:bf77dc26e48ea95fca9d1aceb5acfa69d2e546b765ec2abfb502975f1a2d4def AS test
|
|
37
37
|
|
|
38
38
|
WORKDIR /srv/app/
|
|
39
39
|
|
|
@@ -43,7 +43,7 @@ RUN corepack enable && \
|
|
|
43
43
|
pnpm run test
|
|
44
44
|
|
|
45
45
|
|
|
46
|
-
FROM node:20.11.1-alpine@sha256:
|
|
46
|
+
FROM node:20.11.1-alpine@sha256:bf77dc26e48ea95fca9d1aceb5acfa69d2e546b765ec2abfb502975f1a2d4def 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:20.11.1-alpine@sha256:
|
|
54
|
+
FROM node:20.11.1-alpine@sha256:bf77dc26e48ea95fca9d1aceb5acfa69d2e546b765ec2abfb502975f1a2d4def AS production
|
|
55
55
|
|
|
56
56
|
WORKDIR /srv/app/
|
|
57
57
|
|
package/package.json
CHANGED
|
@@ -1,39 +1,39 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "dargstack_rgen",
|
|
3
|
-
"version": "0.9.27",
|
|
4
|
-
"description": "Generates a DargStack stack project readme.",
|
|
5
|
-
"main": "src/generator.cjs",
|
|
6
|
-
"repository": "https://github.com/dargstack/dargstack_rgen.git",
|
|
7
2
|
"author": "Jonas Thelemann <e-mail+dargstack/dargstack_rgen@jonas-thelemann.de>",
|
|
8
|
-
"license": "GPL-3.0-only",
|
|
9
3
|
"bin": {
|
|
10
4
|
"dargstack_rgen": "./src/generator.cjs"
|
|
11
5
|
},
|
|
12
|
-
"type": "module",
|
|
13
|
-
"engines": {
|
|
14
|
-
"node": "20"
|
|
15
|
-
},
|
|
16
|
-
"packageManager": "pnpm@8.15.3",
|
|
17
|
-
"scripts": {
|
|
18
|
-
"lint": "eslint --ext .js,.cjs .",
|
|
19
|
-
"prepare": "husky",
|
|
20
|
-
"test": "node src/generator.cjs -p test/example_stack -v"
|
|
21
|
-
},
|
|
22
6
|
"dependencies": {
|
|
23
7
|
"deepmerge": "4.3.1",
|
|
24
8
|
"diff": "5.2.0",
|
|
25
9
|
"json2md": "2.0.1",
|
|
26
|
-
"yaml": "2.
|
|
10
|
+
"yaml": "2.4.1",
|
|
27
11
|
"yargs": "17.7.2"
|
|
28
12
|
},
|
|
13
|
+
"description": "Generates a DargStack stack project readme.",
|
|
29
14
|
"devDependencies": {
|
|
30
|
-
"@commitlint/cli": "
|
|
31
|
-
"@commitlint/config-conventional": "
|
|
32
|
-
"eslint": "8.
|
|
15
|
+
"@commitlint/cli": "19.2.0",
|
|
16
|
+
"@commitlint/config-conventional": "19.1.0",
|
|
17
|
+
"eslint": "8.57.0",
|
|
33
18
|
"eslint-config-prettier": "9.1.0",
|
|
34
19
|
"eslint-plugin-node": "11.1.0",
|
|
35
20
|
"eslint-plugin-prettier": "5.1.3",
|
|
36
21
|
"husky": "9.0.11",
|
|
37
22
|
"prettier": "3.2.5"
|
|
38
|
-
}
|
|
23
|
+
},
|
|
24
|
+
"engines": {
|
|
25
|
+
"node": "20"
|
|
26
|
+
},
|
|
27
|
+
"license": "GPL-3.0-only",
|
|
28
|
+
"main": "src/generator.cjs",
|
|
29
|
+
"name": "dargstack_rgen",
|
|
30
|
+
"packageManager": "pnpm@8.15.5",
|
|
31
|
+
"repository": "https://github.com/dargstack/dargstack_rgen.git",
|
|
32
|
+
"scripts": {
|
|
33
|
+
"lint": "eslint --ext .js,.cjs .",
|
|
34
|
+
"prepare": "husky",
|
|
35
|
+
"test": "node src/generator.cjs -p test/example_stack -v"
|
|
36
|
+
},
|
|
37
|
+
"type": "module",
|
|
38
|
+
"version": "0.9.29"
|
|
39
39
|
}
|
|
@@ -31,7 +31,7 @@ services:
|
|
|
31
31
|
# | Database | [postgres_db] |
|
|
32
32
|
#
|
|
33
33
|
# Values in square brackets are [Docker secrets](https://docs.docker.com/engine/swarm/secrets/).
|
|
34
|
-
image: adminer:4.8.1-standalone@sha256:
|
|
34
|
+
image: adminer:4.8.1-standalone@sha256:b75eae89431e8469613b844e76382a26efc8601c17f446bcd81665bc87ca9a1f
|
|
35
35
|
volumes:
|
|
36
36
|
- ../production/configurations/adminer/adminer.css:/var/www/html/adminer.css:ro
|
|
37
37
|
postgres:
|
|
@@ -39,7 +39,7 @@ services:
|
|
|
39
39
|
environment:
|
|
40
40
|
POSTGRES_PASSWORD_FILE: /run/secrets/postgres_password
|
|
41
41
|
POSTGRES_USER_FILE: /run/secrets/postgres_user
|
|
42
|
-
image: postgres:16.2-alpine@sha256:
|
|
42
|
+
image: postgres:16.2-alpine@sha256:49fd8c13fbd0eb92572df9884ca41882a036beac0f12e520274be85e7e7806e9
|
|
43
43
|
secrets:
|
|
44
44
|
- postgres_password
|
|
45
45
|
- postgres_user
|