dargstack_rgen 0.6.24 → 0.6.35
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 +9 -8
- package/.github/workflows/schedule.yml +4 -4
- package/.husky/commit-msg +5 -0
- package/.nvmrc +1 -0
- package/CHANGELOG.md +78 -0
- package/Dockerfile +2 -3
- package/package.json +13 -14
package/.github/workflows/ci.yml
CHANGED
|
@@ -11,11 +11,11 @@ jobs:
|
|
|
11
11
|
runs-on: ubuntu-latest
|
|
12
12
|
steps:
|
|
13
13
|
- name: Git checkout
|
|
14
|
-
uses: actions/checkout@v2.3.
|
|
14
|
+
uses: actions/checkout@1e204e9a9253d643386038d443f96446fa156a97 # renovate: tag=v2.3.5
|
|
15
15
|
|
|
16
16
|
- name: Docker Buildx setup
|
|
17
17
|
id: buildx
|
|
18
|
-
uses: docker/setup-buildx-action@v1.
|
|
18
|
+
uses: docker/setup-buildx-action@94ab11c41e45d028884a99163086648e898eed25 # renovate: tag=v1.6.0
|
|
19
19
|
|
|
20
20
|
- name: Registry login
|
|
21
21
|
if: github.event_name != 'pull_request'
|
|
@@ -71,17 +71,18 @@ jobs:
|
|
|
71
71
|
runs-on: ubuntu-latest
|
|
72
72
|
needs: docker
|
|
73
73
|
steps:
|
|
74
|
-
- uses: actions/checkout@v2.3.
|
|
74
|
+
- uses: actions/checkout@1e204e9a9253d643386038d443f96446fa156a97 # renovate: tag=v2.3.5
|
|
75
75
|
with:
|
|
76
76
|
token: ${{ secrets.GH_TOKEN }}
|
|
77
77
|
- name: Semantic Release
|
|
78
|
-
uses: cycjimmy/semantic-release-action@v2.
|
|
78
|
+
uses: cycjimmy/semantic-release-action@767cc0b0cd610ffb1ffee1b36a9b39120adc5f80 # renovate: tag=v2.6.0
|
|
79
79
|
with:
|
|
80
80
|
extra_plugins: |
|
|
81
81
|
@semantic-release/changelog
|
|
82
82
|
@semantic-release/git
|
|
83
83
|
env:
|
|
84
84
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
85
|
+
HUSKY: 0
|
|
85
86
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
86
87
|
release-assets:
|
|
87
88
|
if: startsWith(github.ref, 'refs/tags/')
|
|
@@ -90,11 +91,11 @@ jobs:
|
|
|
90
91
|
needs: semantic-release
|
|
91
92
|
steps:
|
|
92
93
|
- name: Git checkout
|
|
93
|
-
uses: actions/checkout@v2.3.
|
|
94
|
+
uses: actions/checkout@1e204e9a9253d643386038d443f96446fa156a97 # renovate: tag=v2.3.5
|
|
94
95
|
|
|
95
96
|
- name: Docker Buildx setup
|
|
96
97
|
id: buildx
|
|
97
|
-
uses: docker/setup-buildx-action@v1.
|
|
98
|
+
uses: docker/setup-buildx-action@94ab11c41e45d028884a99163086648e898eed25 # renovate: tag=v1.6.0
|
|
98
99
|
|
|
99
100
|
- name: Build "build"
|
|
100
101
|
run: |
|
|
@@ -109,12 +110,12 @@ jobs:
|
|
|
109
110
|
docker container rm -f extract
|
|
110
111
|
|
|
111
112
|
- name: Zip
|
|
112
|
-
uses: montudor/action-zip@v1.0.0
|
|
113
|
+
uses: montudor/action-zip@0852c26906e00f8a315c704958823928d8018b28 # renovate: tag=v1.0.0
|
|
113
114
|
with:
|
|
114
115
|
args: zip -qq -r ./dargstack_rgen.zip ./src/
|
|
115
116
|
|
|
116
117
|
- name: GitHub Release Asset
|
|
117
|
-
uses: softprops/action-gh-release@v1
|
|
118
|
+
uses: softprops/action-gh-release@6034af24fba4e5a8e975aaa6056554efe4c794d0 # renovate: tag=v1
|
|
118
119
|
with:
|
|
119
120
|
files: dargstack_rgen.zip
|
|
120
121
|
env:
|
|
@@ -11,7 +11,7 @@ jobs:
|
|
|
11
11
|
previous-tag: ${{ steps.previoustag.outputs.tag }}
|
|
12
12
|
timestamp-diff: ${{ steps.diff.outputs.timestamp-diff }}
|
|
13
13
|
steps:
|
|
14
|
-
- uses: actions/checkout@v2.3.
|
|
14
|
+
- uses: actions/checkout@1e204e9a9253d643386038d443f96446fa156a97 # renovate: tag=v2.3.5
|
|
15
15
|
with:
|
|
16
16
|
fetch-depth: 0
|
|
17
17
|
- name: Get previous tag
|
|
@@ -30,7 +30,7 @@ jobs:
|
|
|
30
30
|
needs: analyze-tags
|
|
31
31
|
if: needs.analyze-tags.outputs.timestamp-diff > 604800 # 604800 equal one week.
|
|
32
32
|
steps:
|
|
33
|
-
- uses: actions/checkout@v2.3.
|
|
33
|
+
- uses: actions/checkout@1e204e9a9253d643386038d443f96446fa156a97 # renovate: tag=v2.3.5
|
|
34
34
|
with:
|
|
35
35
|
token: ${{ secrets.GH_TOKEN }}
|
|
36
36
|
- name: Get next minor version
|
|
@@ -39,11 +39,11 @@ jobs:
|
|
|
39
39
|
with:
|
|
40
40
|
version: ${{ needs.analyze-tags.outputs.previous-tag }}
|
|
41
41
|
- name: manifest Version
|
|
42
|
-
uses: deef0000dragon1/json-edit-action
|
|
42
|
+
uses: deef0000dragon1/json-edit-action@cb3f7455e89d659879ab7e4a55cbc9b10c36a713 # renovate: tag=v1
|
|
43
43
|
env:
|
|
44
44
|
KEY: scheduleVersion
|
|
45
45
|
VALUE: ${{ steps.semvers.outputs.patch }}
|
|
46
46
|
FILE: package.json
|
|
47
|
-
- uses: stefanzweifel/git-auto-commit-action@v4.
|
|
47
|
+
- uses: stefanzweifel/git-auto-commit-action@abd87b7d94702070bef78dc1d56b6928b8fa9ecc # renovate: tag=v4.12.0
|
|
48
48
|
with:
|
|
49
49
|
commit_message: 'fix(release): schedule release'
|
package/.nvmrc
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
17
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,81 @@
|
|
|
1
|
+
## [0.6.35](https://github.com/dargmuesli/dargstack_rgen/compare/0.6.34...0.6.35) (2021-11-01)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **release:** schedule release ([a2d6828](https://github.com/dargmuesli/dargstack_rgen/commit/a2d68282180f1e78b09a4ed0437ba88b9160b465))
|
|
7
|
+
|
|
8
|
+
## [0.6.34](https://github.com/dargmuesli/dargstack_rgen/compare/0.6.33...0.6.34) (2021-10-18)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **release:** schedule release ([45a24ea](https://github.com/dargmuesli/dargstack_rgen/commit/45a24eaac56bc1e30244c475988b20eaace9021c))
|
|
14
|
+
|
|
15
|
+
## [0.6.33](https://github.com/dargmuesli/dargstack_rgen/compare/0.6.32...0.6.33) (2021-10-04)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* **release:** schedule release ([40050da](https://github.com/dargmuesli/dargstack_rgen/commit/40050dac141cf1e7bd891c2995c7f384b8434df5))
|
|
21
|
+
|
|
22
|
+
## [0.6.32](https://github.com/dargmuesli/dargstack_rgen/compare/0.6.31...0.6.32) (2021-09-20)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Bug Fixes
|
|
26
|
+
|
|
27
|
+
* **sh:** correct braces ([77bdca2](https://github.com/dargmuesli/dargstack_rgen/commit/77bdca2fa41804f767e416cf15ca5a106ceddb49))
|
|
28
|
+
|
|
29
|
+
## [0.6.31](https://github.com/dargmuesli/dargstack_rgen/compare/0.6.30...0.6.31) (2021-09-20)
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
### Bug Fixes
|
|
33
|
+
|
|
34
|
+
* **ci:** disable husky for semantic release ([3e12e14](https://github.com/dargmuesli/dargstack_rgen/commit/3e12e142ecb935316593f355b02bab4a8a09bb56))
|
|
35
|
+
* **docker:** disable husky ([b8aba74](https://github.com/dargmuesli/dargstack_rgen/commit/b8aba7457f21414a7d59c4b7e7bca49ac77da490))
|
|
36
|
+
|
|
37
|
+
## [0.6.30](https://github.com/dargmuesli/dargstack_rgen/compare/0.6.29...0.6.30) (2021-09-20)
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
### Bug Fixes
|
|
41
|
+
|
|
42
|
+
* **release:** schedule release ([2635b16](https://github.com/dargmuesli/dargstack_rgen/commit/2635b164f8f50df3562005ba398ddcc68400299d))
|
|
43
|
+
|
|
44
|
+
## [0.6.29](https://github.com/dargmuesli/dargstack_rgen/compare/0.6.28...0.6.29) (2021-09-06)
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
### Bug Fixes
|
|
48
|
+
|
|
49
|
+
* **release:** schedule release ([68a5fd1](https://github.com/dargmuesli/dargstack_rgen/commit/68a5fd1eb4cc4efc0487c087e55f3dde8fed30a4))
|
|
50
|
+
|
|
51
|
+
## [0.6.28](https://github.com/dargmuesli/dargstack_rgen/compare/0.6.27...0.6.28) (2021-08-23)
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
### Bug Fixes
|
|
55
|
+
|
|
56
|
+
* **release:** schedule release ([64b82f9](https://github.com/dargmuesli/dargstack_rgen/commit/64b82f90a311b90bdb40236fb64aaa01ee3382b5))
|
|
57
|
+
|
|
58
|
+
## [0.6.27](https://github.com/dargmuesli/dargstack_rgen/compare/0.6.26...0.6.27) (2021-08-09)
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
### Bug Fixes
|
|
62
|
+
|
|
63
|
+
* **release:** schedule release ([f230801](https://github.com/dargmuesli/dargstack_rgen/commit/f2308012440f039bae0210cd8300b9ad9031d8ee))
|
|
64
|
+
|
|
65
|
+
## [0.6.26](https://github.com/dargmuesli/dargstack_rgen/compare/0.6.25...0.6.26) (2021-07-26)
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
### Bug Fixes
|
|
69
|
+
|
|
70
|
+
* **release:** schedule release ([857fc7e](https://github.com/dargmuesli/dargstack_rgen/commit/857fc7eff1b2a92ecadd5f194ced9308f23872cc))
|
|
71
|
+
|
|
72
|
+
## [0.6.25](https://github.com/dargmuesli/dargstack_rgen/compare/0.6.24...0.6.25) (2021-07-12)
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
### Bug Fixes
|
|
76
|
+
|
|
77
|
+
* **release:** schedule release ([d020949](https://github.com/dargmuesli/dargstack_rgen/commit/d020949391298a11c277e17c032ddb65f80c1783))
|
|
78
|
+
|
|
1
79
|
## [0.6.24](https://github.com/dargmuesli/dargstack_rgen/compare/0.6.23...0.6.24) (2021-06-28)
|
|
2
80
|
|
|
3
81
|
|
package/Dockerfile
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
FROM node:
|
|
1
|
+
FROM node:17.0.1-alpine@sha256:959c4fc79a753b8b797c4fc9da967c7a81b4a3a3ff93d484dfe00092bf9fd584 AS development
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
ENV HUSKY_SKIP_INSTALL=1
|
|
3
|
+
ENV HUSKY=0
|
|
5
4
|
|
|
6
5
|
WORKDIR /srv/app/
|
|
7
6
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dargstack_rgen",
|
|
3
|
-
"version": "0.6.
|
|
4
|
-
"scheduleVersion": "0.6.
|
|
3
|
+
"version": "0.6.35",
|
|
4
|
+
"scheduleVersion": "0.6.35",
|
|
5
5
|
"description": "Generates a DargStack stack project readme.",
|
|
6
6
|
"main": "src/generator.js",
|
|
7
7
|
"repository": "https://github.com/dargmuesli/dargstack_rgen.git",
|
|
@@ -13,24 +13,23 @@
|
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"deepmerge": "4.2.2",
|
|
15
15
|
"diff": "5.0.0",
|
|
16
|
-
"json2md": "1.
|
|
16
|
+
"json2md": "1.12.0",
|
|
17
17
|
"yaml": "1.10.2",
|
|
18
|
-
"yargs": "17.
|
|
18
|
+
"yargs": "17.2.1"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@commitlint/cli": "
|
|
22
|
-
"@commitlint/config-conventional": "
|
|
23
|
-
"eslint": "
|
|
21
|
+
"@commitlint/cli": "13.2.1",
|
|
22
|
+
"@commitlint/config-conventional": "13.2.0",
|
|
23
|
+
"eslint": "8.1.0",
|
|
24
24
|
"eslint-config-standard": "16.0.3",
|
|
25
|
-
"eslint-plugin-import": "2.
|
|
25
|
+
"eslint-plugin-import": "2.25.2",
|
|
26
26
|
"eslint-plugin-node": "11.1.0",
|
|
27
|
-
"eslint-plugin-promise": "5.1.
|
|
27
|
+
"eslint-plugin-promise": "5.1.1",
|
|
28
28
|
"eslint-plugin-standard": "4.1.0",
|
|
29
|
-
"husky": "
|
|
29
|
+
"husky": "7.0.4",
|
|
30
|
+
"shx": "0.3.3"
|
|
30
31
|
},
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
|
|
34
|
-
}
|
|
32
|
+
"scripts": {
|
|
33
|
+
"prepare": "if [ \"$HUSKY\" != \"0\" ]; then husky install && shx rm -rf .git/hooks && shx ln -s ../.husky .git/hooks; fi"
|
|
35
34
|
}
|
|
36
35
|
}
|