dargstack_rgen 0.8.5 → 0.8.6
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.
|
@@ -9,18 +9,18 @@ on:
|
|
|
9
9
|
jobs:
|
|
10
10
|
build:
|
|
11
11
|
name: Build
|
|
12
|
-
uses: dargmuesli/github-actions/.github/workflows/docker.yml@0.28.
|
|
12
|
+
uses: dargmuesli/github-actions/.github/workflows/docker.yml@0.28.5
|
|
13
13
|
secrets:
|
|
14
14
|
DOCKER_HUB_ACCESS_TOKEN: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
|
|
15
15
|
DOCKER_HUB_USER_NAME: ${{ secrets.DOCKER_HUB_USER_NAME }}
|
|
16
16
|
release-semantic:
|
|
17
17
|
needs: build
|
|
18
18
|
name: Release (semantic)
|
|
19
|
-
uses: dargmuesli/github-actions/.github/workflows/release-semantic.yml@0.28.
|
|
19
|
+
uses: dargmuesli/github-actions/.github/workflows/release-semantic.yml@0.28.5
|
|
20
20
|
secrets:
|
|
21
21
|
GH_TOKEN: ${{ secrets.GH_TOKEN }}
|
|
22
22
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
23
23
|
release-assets:
|
|
24
24
|
needs: release-semantic
|
|
25
25
|
name: Release (assets)
|
|
26
|
-
uses: dargmuesli/github-actions/.github/workflows/release-assets.yml@0.28.
|
|
26
|
+
uses: dargmuesli/github-actions/.github/workflows/release-assets.yml@0.28.5
|
|
@@ -7,7 +7,7 @@ on:
|
|
|
7
7
|
jobs:
|
|
8
8
|
release-schedule:
|
|
9
9
|
name: Release (scheduled)
|
|
10
|
-
uses: dargmuesli/github-actions/.github/workflows/release-schedule.yml@0.28.
|
|
10
|
+
uses: dargmuesli/github-actions/.github/workflows/release-schedule.yml@0.28.5
|
|
11
11
|
secrets:
|
|
12
12
|
GH_TOKEN: ${{ secrets.GH_TOKEN }}
|
|
13
13
|
with:
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [0.8.6](https://github.com/dargmuesli/dargstack_rgen/compare/0.8.5...0.8.6) (2023-02-13)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **release:** schedule release ([5e2b775](https://github.com/dargmuesli/dargstack_rgen/commit/5e2b7757a29f12fade4db21f605f8586f276ce2c))
|
|
7
|
+
|
|
1
8
|
## [0.8.5](https://github.com/dargmuesli/dargstack_rgen/compare/0.8.4...0.8.5) (2023-01-30)
|
|
2
9
|
|
|
3
10
|
|
package/Dockerfile
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
FROM node:19.
|
|
1
|
+
FROM node:19.6.0-alpine@sha256:992dd138340c189b2bc49d879cc4b328b12b8aa3480a43b1a05505a18987df3b 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.
|
|
10
|
+
FROM node:19.6.0-alpine@sha256:992dd138340c189b2bc49d879cc4b328b12b8aa3480a43b1a05505a18987df3b 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.
|
|
24
|
+
FROM node:19.6.0-alpine@sha256:992dd138340c189b2bc49d879cc4b328b12b8aa3480a43b1a05505a18987df3b 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.
|
|
36
|
+
FROM node:19.6.0-alpine@sha256:992dd138340c189b2bc49d879cc4b328b12b8aa3480a43b1a05505a18987df3b 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.
|
|
46
|
+
FROM node:19.6.0-alpine@sha256:992dd138340c189b2bc49d879cc4b328b12b8aa3480a43b1a05505a18987df3b 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.
|
|
54
|
+
FROM node:19.6.0-alpine@sha256:992dd138340c189b2bc49d879cc4b328b12b8aa3480a43b1a05505a18987df3b AS production
|
|
55
55
|
|
|
56
56
|
WORKDIR /srv/app/
|
|
57
57
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dargstack_rgen",
|
|
3
|
-
"version": "0.8.
|
|
4
|
-
"scheduleVersion": "0.8.
|
|
3
|
+
"version": "0.8.6",
|
|
4
|
+
"scheduleVersion": "0.8.6",
|
|
5
5
|
"description": "Generates a DargStack stack project readme.",
|
|
6
6
|
"main": "src/generator.cjs",
|
|
7
7
|
"repository": "https://github.com/dargmuesli/dargstack_rgen.git",
|
|
@@ -14,14 +14,14 @@
|
|
|
14
14
|
"engines": {
|
|
15
15
|
"node": "19"
|
|
16
16
|
},
|
|
17
|
-
"packageManager": "pnpm@7.
|
|
17
|
+
"packageManager": "pnpm@7.27.0",
|
|
18
18
|
"scripts": {
|
|
19
19
|
"lint": "eslint --ext .js,.cjs .",
|
|
20
20
|
"prepare": "if [ \"$NODE_ENV\" != \"production\" ]; then husky install && shx rm -rf .git/hooks && shx ln -s ../.husky .git/hooks; fi",
|
|
21
21
|
"test": "node src/generator.cjs -p test/example_stack -v"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"deepmerge": "4.
|
|
24
|
+
"deepmerge": "4.3.0",
|
|
25
25
|
"diff": "5.1.0",
|
|
26
26
|
"json2md": "2.0.0",
|
|
27
27
|
"yaml": "2.2.1",
|
|
@@ -30,12 +30,12 @@
|
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@commitlint/cli": "17.4.2",
|
|
32
32
|
"@commitlint/config-conventional": "17.4.2",
|
|
33
|
-
"eslint": "8.
|
|
33
|
+
"eslint": "8.34.0",
|
|
34
34
|
"eslint-config-prettier": "8.6.0",
|
|
35
35
|
"eslint-plugin-node": "11.1.0",
|
|
36
36
|
"eslint-plugin-prettier": "4.2.1",
|
|
37
37
|
"husky": "8.0.3",
|
|
38
|
-
"prettier": "2.8.
|
|
38
|
+
"prettier": "2.8.4",
|
|
39
39
|
"shx": "0.3.4"
|
|
40
40
|
}
|
|
41
41
|
}
|