dargstack_rgen 0.9.75 → 0.9.77
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 +21 -20
- package/.github/workflows/release-schedule.yml +3 -1
- package/.nvmrc +1 -1
- package/CHANGELOG.md +14 -0
- package/Dockerfile +1 -1
- package/package.json +9 -9
package/.github/workflows/ci.yml
CHANGED
|
@@ -1,51 +1,52 @@
|
|
|
1
1
|
name: CI
|
|
2
2
|
|
|
3
|
+
permissions: {}
|
|
4
|
+
|
|
3
5
|
on:
|
|
4
6
|
pull_request:
|
|
5
7
|
push:
|
|
6
8
|
branches:
|
|
7
9
|
- alpha
|
|
8
10
|
- beta
|
|
11
|
+
- main
|
|
9
12
|
- master
|
|
10
13
|
- renovate/**
|
|
11
14
|
|
|
12
15
|
jobs:
|
|
13
|
-
|
|
14
|
-
name:
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
steps:
|
|
19
|
-
- name: Get current PR
|
|
20
|
-
id: pr
|
|
21
|
-
uses: 8BitJonny/gh-get-current-pr@4.0.0
|
|
22
|
-
with:
|
|
23
|
-
filterOutClosed: true
|
|
24
|
-
filterOutDraft: true
|
|
16
|
+
ci-optimization:
|
|
17
|
+
name: CI optimization
|
|
18
|
+
uses: dargmuesli/github-actions/.github/workflows/ci-optimization.yml@d6dda211541b8c8c8088762ff8f4a1c4d32f047c # 3.2.1
|
|
19
|
+
permissions:
|
|
20
|
+
pull-requests: read
|
|
25
21
|
release_semantic_dry:
|
|
26
|
-
needs:
|
|
22
|
+
needs: ci-optimization
|
|
23
|
+
if: needs.ci-optimization.outputs.continue == 'true'
|
|
27
24
|
name: Release (semantic, dry)
|
|
28
|
-
uses: dargmuesli/github-actions/.github/workflows/release-semantic.yml@2.
|
|
29
|
-
if: needs.prepare_jobs.outputs.pr_found == 'false' || github.event_name == 'pull_request'
|
|
25
|
+
uses: dargmuesli/github-actions/.github/workflows/release-semantic.yml@d6dda211541b8c8c8088762ff8f4a1c4d32f047c # 3.2.1
|
|
30
26
|
permissions:
|
|
31
27
|
contents: write
|
|
28
|
+
id-token: write
|
|
32
29
|
secrets:
|
|
33
30
|
PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
|
|
34
|
-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
35
31
|
with:
|
|
36
32
|
DRY_RUN: true
|
|
33
|
+
INSTALL_NODE_DEPENDENCIES: true
|
|
37
34
|
build:
|
|
38
35
|
name: Build
|
|
39
|
-
uses: dargmuesli/github-actions/.github/workflows/docker.yml@2.
|
|
36
|
+
uses: dargmuesli/github-actions/.github/workflows/docker.yml@d6dda211541b8c8c8088762ff8f4a1c4d32f047c # 3.2.1
|
|
40
37
|
needs: release_semantic_dry
|
|
41
38
|
permissions:
|
|
42
39
|
packages: write
|
|
43
|
-
|
|
40
|
+
with:
|
|
41
|
+
TAG: ${{ needs.release_semantic_dry.outputs.new_release_version }}
|
|
42
|
+
release_semantic:
|
|
44
43
|
needs: build
|
|
45
44
|
name: Release (semantic)
|
|
46
|
-
uses: dargmuesli/github-actions/.github/workflows/release-semantic.yml@2.
|
|
45
|
+
uses: dargmuesli/github-actions/.github/workflows/release-semantic.yml@d6dda211541b8c8c8088762ff8f4a1c4d32f047c # 3.2.1
|
|
47
46
|
permissions:
|
|
48
47
|
contents: write
|
|
48
|
+
id-token: write
|
|
49
49
|
secrets:
|
|
50
50
|
PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
|
|
51
|
-
|
|
51
|
+
with:
|
|
52
|
+
INSTALL_NODE_DEPENDENCIES: true
|
|
@@ -8,7 +8,9 @@ on:
|
|
|
8
8
|
jobs:
|
|
9
9
|
release-schedule:
|
|
10
10
|
name: 'Release: Scheduled'
|
|
11
|
-
uses: dargmuesli/github-actions/.github/workflows/release-schedule.yml@2.
|
|
11
|
+
uses: dargmuesli/github-actions/.github/workflows/release-schedule.yml@d6dda211541b8c8c8088762ff8f4a1c4d32f047c # 3.2.1
|
|
12
|
+
permissions:
|
|
13
|
+
contents: read
|
|
12
14
|
secrets:
|
|
13
15
|
PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
|
|
14
16
|
with:
|
package/.nvmrc
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
24
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [0.9.77](https://github.com/dargstack/dargstack_rgen/compare/0.9.76...0.9.77) (2025-12-02)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* schedule release ([95a158b](https://github.com/dargstack/dargstack_rgen/commit/95a158b9f71e126054513e7e19f13d35754e6899))
|
|
7
|
+
|
|
8
|
+
## [0.9.76](https://github.com/dargstack/dargstack_rgen/compare/0.9.75...0.9.76) (2025-11-18)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* schedule release ([5abc85c](https://github.com/dargstack/dargstack_rgen/commit/5abc85cf6ecec7a7731aac801e3cf687ba0fb294))
|
|
14
|
+
|
|
1
15
|
## [0.9.75](https://github.com/dargstack/dargstack_rgen/compare/0.9.74...0.9.75) (2025-11-04)
|
|
2
16
|
|
|
3
17
|
|
package/Dockerfile
CHANGED
package/package.json
CHANGED
|
@@ -7,31 +7,31 @@
|
|
|
7
7
|
"deepmerge": "4.3.1",
|
|
8
8
|
"diff": "8.0.2",
|
|
9
9
|
"json2md": "2.0.3",
|
|
10
|
-
"yaml": "2.8.
|
|
10
|
+
"yaml": "2.8.2",
|
|
11
11
|
"yargs": "18.0.0"
|
|
12
12
|
},
|
|
13
13
|
"description": "Generates a DargStack stack project readme.",
|
|
14
14
|
"devDependencies": {
|
|
15
15
|
"@commitlint/cli": "20.1.0",
|
|
16
16
|
"@commitlint/config-conventional": "20.0.0",
|
|
17
|
-
"@eslint/js": "9.39.
|
|
17
|
+
"@eslint/js": "9.39.1",
|
|
18
18
|
"@types/json2md": "1.5.4",
|
|
19
|
-
"@types/yargs": "17.0.
|
|
20
|
-
"eslint": "9.39.
|
|
19
|
+
"@types/yargs": "17.0.35",
|
|
20
|
+
"eslint": "9.39.1",
|
|
21
21
|
"eslint-config-prettier": "10.1.8",
|
|
22
22
|
"eslint-plugin-prettier": "5.5.4",
|
|
23
23
|
"globals": "16.5.0",
|
|
24
24
|
"husky": "9.1.7",
|
|
25
|
-
"prettier": "3.
|
|
26
|
-
"typescript-eslint": "8.
|
|
25
|
+
"prettier": "3.7.3",
|
|
26
|
+
"typescript-eslint": "8.48.0"
|
|
27
27
|
},
|
|
28
28
|
"engines": {
|
|
29
|
-
"node": "
|
|
29
|
+
"node": "24"
|
|
30
30
|
},
|
|
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.24.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.77"
|
|
43
43
|
}
|