dargstack_rgen 0.9.57 → 0.9.59
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 +3 -3
- package/.github/workflows/release-schedule.yml +1 -1
- package/CHANGELOG.md +14 -0
- package/Dockerfile +3 -9
- package/package.json +7 -7
package/.github/workflows/ci.yml
CHANGED
|
@@ -25,7 +25,7 @@ jobs:
|
|
|
25
25
|
release_semantic_dry:
|
|
26
26
|
needs: prepare_jobs
|
|
27
27
|
name: Release (semantic, dry)
|
|
28
|
-
uses: dargmuesli/github-actions/.github/workflows/release-semantic.yml@2.5.
|
|
28
|
+
uses: dargmuesli/github-actions/.github/workflows/release-semantic.yml@2.5.5
|
|
29
29
|
if: needs.prepare_jobs.outputs.pr_found == 'false' || github.event_name == 'pull_request'
|
|
30
30
|
permissions:
|
|
31
31
|
contents: write
|
|
@@ -36,14 +36,14 @@ jobs:
|
|
|
36
36
|
DRY_RUN: true
|
|
37
37
|
build:
|
|
38
38
|
name: Build
|
|
39
|
-
uses: dargmuesli/github-actions/.github/workflows/docker.yml@2.5.
|
|
39
|
+
uses: dargmuesli/github-actions/.github/workflows/docker.yml@2.5.5
|
|
40
40
|
needs: release_semantic_dry
|
|
41
41
|
permissions:
|
|
42
42
|
packages: write
|
|
43
43
|
release-semantic:
|
|
44
44
|
needs: build
|
|
45
45
|
name: Release (semantic)
|
|
46
|
-
uses: dargmuesli/github-actions/.github/workflows/release-semantic.yml@2.5.
|
|
46
|
+
uses: dargmuesli/github-actions/.github/workflows/release-semantic.yml@2.5.5
|
|
47
47
|
permissions:
|
|
48
48
|
contents: write
|
|
49
49
|
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@2.5.
|
|
11
|
+
uses: dargmuesli/github-actions/.github/workflows/release-schedule.yml@2.5.5
|
|
12
12
|
secrets:
|
|
13
13
|
PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
|
|
14
14
|
with:
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [0.9.59](https://github.com/dargstack/dargstack_rgen/compare/0.9.58...0.9.59) (2025-04-01)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* schedule release ([b9a97a7](https://github.com/dargstack/dargstack_rgen/commit/b9a97a73fddcb2139c320ef68e4977259a47841e))
|
|
7
|
+
|
|
8
|
+
## [0.9.58](https://github.com/dargstack/dargstack_rgen/compare/0.9.57...0.9.58) (2025-03-25)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* schedule release ([049f217](https://github.com/dargstack/dargstack_rgen/commit/049f2177af3f744fa64fdc52f8e0933cf7d72b9b))
|
|
14
|
+
|
|
1
15
|
## [0.9.57](https://github.com/dargstack/dargstack_rgen/compare/0.9.56...0.9.57) (2025-03-11)
|
|
2
16
|
|
|
3
17
|
|
package/Dockerfile
CHANGED
|
@@ -13,9 +13,7 @@ WORKDIR /srv/app/
|
|
|
13
13
|
|
|
14
14
|
COPY ./pnpm-lock.yaml package.json ./
|
|
15
15
|
|
|
16
|
-
RUN
|
|
17
|
-
# TODO: remove (https://github.com/nodejs/corepack/issues/612)
|
|
18
|
-
&& corepack enable \
|
|
16
|
+
RUN corepack enable \
|
|
19
17
|
&& pnpm fetch
|
|
20
18
|
|
|
21
19
|
COPY ./ ./
|
|
@@ -27,17 +25,13 @@ FROM prepare AS build
|
|
|
27
25
|
|
|
28
26
|
ENV NODE_ENV=production
|
|
29
27
|
|
|
30
|
-
RUN
|
|
31
|
-
# TODO: remove (https://github.com/nodejs/corepack/issues/612)
|
|
32
|
-
&& corepack enable \
|
|
28
|
+
RUN corepack enable \
|
|
33
29
|
&& pnpm install --offline --ignore-scripts --prod
|
|
34
30
|
|
|
35
31
|
|
|
36
32
|
FROM prepare AS test
|
|
37
33
|
|
|
38
|
-
RUN
|
|
39
|
-
# TODO: remove (https://github.com/nodejs/corepack/issues/612)
|
|
40
|
-
&& corepack enable \
|
|
34
|
+
RUN corepack enable \
|
|
41
35
|
&& pnpm run test
|
|
42
36
|
|
|
43
37
|
|
package/package.json
CHANGED
|
@@ -7,23 +7,23 @@
|
|
|
7
7
|
"deepmerge": "4.3.1",
|
|
8
8
|
"diff": "7.0.0",
|
|
9
9
|
"json2md": "2.0.2",
|
|
10
|
-
"yaml": "2.7.
|
|
10
|
+
"yaml": "2.7.1",
|
|
11
11
|
"yargs": "17.7.2"
|
|
12
12
|
},
|
|
13
13
|
"description": "Generates a DargStack stack project readme.",
|
|
14
14
|
"devDependencies": {
|
|
15
15
|
"@commitlint/cli": "19.8.0",
|
|
16
16
|
"@commitlint/config-conventional": "19.8.0",
|
|
17
|
-
"@types/diff": "7.0.
|
|
17
|
+
"@types/diff": "7.0.2",
|
|
18
18
|
"@types/json2md": "1.5.4",
|
|
19
19
|
"@types/yargs": "17.0.33",
|
|
20
|
-
"eslint": "9.
|
|
20
|
+
"eslint": "9.23.0",
|
|
21
21
|
"eslint-config-prettier": "10.1.1",
|
|
22
|
-
"eslint-plugin-prettier": "5.2.
|
|
22
|
+
"eslint-plugin-prettier": "5.2.5",
|
|
23
23
|
"globals": "16.0.0",
|
|
24
24
|
"husky": "9.1.7",
|
|
25
25
|
"prettier": "3.5.3",
|
|
26
|
-
"typescript-eslint": "8.
|
|
26
|
+
"typescript-eslint": "8.29.0"
|
|
27
27
|
},
|
|
28
28
|
"engines": {
|
|
29
29
|
"node": "22"
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"license": "GPL-3.0-only",
|
|
32
32
|
"main": "src/generator.js",
|
|
33
33
|
"name": "dargstack_rgen",
|
|
34
|
-
"packageManager": "pnpm@10.
|
|
34
|
+
"packageManager": "pnpm@10.7.0",
|
|
35
35
|
"repository": "https://github.com/dargstack/dargstack_rgen.git",
|
|
36
36
|
"scripts": {
|
|
37
37
|
"lint": "eslint --cache",
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"test": "node src/generator.js -p test/example_stack -v"
|
|
40
40
|
},
|
|
41
41
|
"type": "module",
|
|
42
|
-
"version": "0.9.
|
|
42
|
+
"version": "0.9.59"
|
|
43
43
|
}
|