dargstack_rgen 0.8.7 → 0.8.9

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.
@@ -1,4 +1,4 @@
1
- name: Docker
1
+ name: CI
2
2
 
3
3
  on:
4
4
  pull_request:
@@ -9,18 +9,14 @@ on:
9
9
  jobs:
10
10
  build:
11
11
  name: Build
12
- uses: dargmuesli/github-actions/.github/workflows/docker.yml@0.28.8
12
+ uses: dargmuesli/github-actions/.github/workflows/docker.yml@0.31.2
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.8
19
+ uses: dargmuesli/github-actions/.github/workflows/release-semantic.yml@0.31.2
20
20
  secrets:
21
21
  GH_TOKEN: ${{ secrets.GH_TOKEN }}
22
- NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
23
- release-assets:
24
- needs: release-semantic
25
- name: Release (assets)
26
- uses: dargmuesli/github-actions/.github/workflows/release-assets.yml@0.28.8
22
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
@@ -2,12 +2,12 @@ name: 'Release: Scheduled'
2
2
 
3
3
  on:
4
4
  schedule:
5
- - cron: '0 0 * * 1' # Every Monday at 00:00 AM UTC on the default branch
5
+ - cron: '0 0 * * 2' # Every Tuesday at 00:00 AM UTC on the default branch
6
6
 
7
7
  jobs:
8
8
  release-schedule:
9
9
  name: Release (scheduled)
10
- uses: dargmuesli/github-actions/.github/workflows/release-schedule.yml@0.28.8
10
+ uses: dargmuesli/github-actions/.github/workflows/release-schedule.yml@0.31.2
11
11
  secrets:
12
12
  GH_TOKEN: ${{ secrets.GH_TOKEN }}
13
13
  with:
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## [0.8.9](https://github.com/dargmuesli/dargstack_rgen/compare/0.8.8...0.8.9) (2023-03-21)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **release:** schedule release ([6d35d77](https://github.com/dargmuesli/dargstack_rgen/commit/6d35d777bd03af0567678d7192d91765c1ff65d4))
7
+
8
+ ## [0.8.8](https://github.com/dargmuesli/dargstack_rgen/compare/0.8.7...0.8.8) (2023-03-07)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **release:** schedule release ([6266a6f](https://github.com/dargmuesli/dargstack_rgen/commit/6266a6fa13524c035c73cdeeefacea230870499d))
14
+
1
15
  ## [0.8.7](https://github.com/dargmuesli/dargstack_rgen/compare/0.8.6...0.8.7) (2023-02-27)
2
16
 
3
17
 
package/Dockerfile CHANGED
@@ -1,4 +1,4 @@
1
- FROM node:19.7.0-alpine@sha256:667dc6ed8fc6623ccd21cb5fa355c90f848daaf5d6df96bc940869bfdf91c19a AS development
1
+ FROM node:19.8.1-alpine@sha256:a67a33f791d1c86ced985f339fa160f6188f590ebbe963fe11cc00adc971fa41 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.7.0-alpine@sha256:667dc6ed8fc6623ccd21cb5fa355c90f848daaf5d6df96bc940869bfdf91c19a AS prepare
10
+ FROM node:19.8.1-alpine@sha256:a67a33f791d1c86ced985f339fa160f6188f590ebbe963fe11cc00adc971fa41 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.7.0-alpine@sha256:667dc6ed8fc6623ccd21cb5fa355c90f848daaf5d6df96bc940869bfdf91c19a AS build
24
+ FROM node:19.8.1-alpine@sha256:a67a33f791d1c86ced985f339fa160f6188f590ebbe963fe11cc00adc971fa41 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.7.0-alpine@sha256:667dc6ed8fc6623ccd21cb5fa355c90f848daaf5d6df96bc940869bfdf91c19a AS test
36
+ FROM node:19.8.1-alpine@sha256:a67a33f791d1c86ced985f339fa160f6188f590ebbe963fe11cc00adc971fa41 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.7.0-alpine@sha256:667dc6ed8fc6623ccd21cb5fa355c90f848daaf5d6df96bc940869bfdf91c19a AS collect
46
+ FROM node:19.8.1-alpine@sha256:a67a33f791d1c86ced985f339fa160f6188f590ebbe963fe11cc00adc971fa41 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.7.0-alpine@sha256:667dc6ed8fc6623ccd21cb5fa355c90f848daaf5d6df96bc940869bfdf91c19a AS production
54
+ FROM node:19.8.1-alpine@sha256:a67a33f791d1c86ced985f339fa160f6188f590ebbe963fe11cc00adc971fa41 AS production
55
55
 
56
56
  WORKDIR /srv/app/
57
57
 
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- [![Docker CI](https://github.com/dargmuesli/dargstack_rgen/workflows/CI/badge.svg)](https://github.com/dargmuesli/dargstack_rgen/actions?query=workflow%3A%22CI%22)
1
+ [![CI](https://github.com/dargmuesli/dargstack_rgen/actions/workflows/ci.yml/badge.svg)](https://github.com/dargmuesli/dargstack_rgen/actions/workflows/ci.yml)
2
2
 
3
3
  # DargStack RGen
4
4
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "dargstack_rgen",
3
- "version": "0.8.7",
4
- "scheduleVersion": "0.8.7",
3
+ "version": "0.8.9",
4
+ "scheduleVersion": "0.8.9",
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.28.0",
17
+ "packageManager": "pnpm@7.30.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.3.0",
24
+ "deepmerge": "4.3.1",
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.4",
32
32
  "@commitlint/config-conventional": "17.4.4",
33
- "eslint": "8.35.0",
34
- "eslint-config-prettier": "8.6.0",
33
+ "eslint": "8.36.0",
34
+ "eslint-config-prettier": "8.8.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.4",
38
+ "prettier": "2.8.5",
39
39
  "shx": "0.3.4"
40
40
  }
41
41
  }