dargstack_rgen 0.9.53 → 0.9.55

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.
@@ -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.3.10
28
+ uses: dargmuesli/github-actions/.github/workflows/release-semantic.yml@2.3.16
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.3.10
39
+ uses: dargmuesli/github-actions/.github/workflows/docker.yml@2.3.16
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.3.10
46
+ uses: dargmuesli/github-actions/.github/workflows/release-semantic.yml@2.3.16
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.3.10
11
+ uses: dargmuesli/github-actions/.github/workflows/release-schedule.yml@2.3.16
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.55](https://github.com/dargstack/dargstack_rgen/compare/0.9.54...0.9.55) (2025-02-11)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * schedule release ([b0da299](https://github.com/dargstack/dargstack_rgen/commit/b0da299d50cd50bd63d587ab2785cb6582e6a1e4))
7
+
8
+ ## [0.9.54](https://github.com/dargstack/dargstack_rgen/compare/0.9.53...0.9.54) (2025-01-28)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * schedule release ([a02792d](https://github.com/dargstack/dargstack_rgen/commit/a02792d1fc019c411f4d46114d727cbdd2aa1c56))
14
+
1
15
  ## [0.9.53](https://github.com/dargstack/dargstack_rgen/compare/0.9.52...0.9.53) (2025-01-14)
2
16
 
3
17
 
package/Dockerfile CHANGED
@@ -1,4 +1,4 @@
1
- FROM node:22.13.0-alpine@sha256:f2dc6eea95f787e25f173ba9904c9d0647ab2506178c7b5b7c5a3d02bc4af145 AS development
1
+ FROM node:22.13.1-alpine@sha256:e2b39f7b64281324929257d0f8004fb6cb4bf0fdfb9aa8cedb235a766aec31da AS development
2
2
 
3
3
  WORKDIR /srv/app/
4
4
 
@@ -7,14 +7,16 @@ VOLUME /srv/app
7
7
  ENTRYPOINT ["node", "./src/generator.js"]
8
8
 
9
9
 
10
- FROM node:22.13.0-alpine@sha256:f2dc6eea95f787e25f173ba9904c9d0647ab2506178c7b5b7c5a3d02bc4af145 AS prepare
10
+ FROM node:22.13.1-alpine@sha256:e2b39f7b64281324929257d0f8004fb6cb4bf0fdfb9aa8cedb235a766aec31da AS prepare
11
11
 
12
12
  WORKDIR /srv/app/
13
13
 
14
- COPY ./pnpm-lock.yaml ./
14
+ COPY ./pnpm-lock.yaml package.json ./
15
15
 
16
- RUN corepack enable && \
17
- pnpm fetch
16
+ RUN npm install -g corepack@latest \
17
+ # TODO: remove (https://github.com/nodejs/corepack/issues/612)
18
+ && corepack enable \
19
+ && pnpm fetch
18
20
 
19
21
  COPY ./ ./
20
22
 
@@ -25,14 +27,18 @@ FROM prepare AS build
25
27
 
26
28
  ENV NODE_ENV=production
27
29
 
28
- RUN corepack enable && \
29
- pnpm install --offline --ignore-scripts
30
+ RUN npm install -g corepack@latest \
31
+ # TODO: remove (https://github.com/nodejs/corepack/issues/612)
32
+ && corepack enable \
33
+ && pnpm install --offline --ignore-scripts --prod
30
34
 
31
35
 
32
36
  FROM prepare AS test
33
37
 
34
- RUN corepack enable && \
35
- pnpm run test
38
+ RUN npm install -g corepack@latest \
39
+ # TODO: remove (https://github.com/nodejs/corepack/issues/612)
40
+ && corepack enable \
41
+ && pnpm run test
36
42
 
37
43
 
38
44
  FROM prepare AS collect
@@ -41,7 +47,7 @@ COPY --from=build /srv/app/ /srv/app/
41
47
  COPY --from=test /srv/app/package.json /tmp/package.json
42
48
 
43
49
 
44
- FROM node:22.13.0-alpine@sha256:f2dc6eea95f787e25f173ba9904c9d0647ab2506178c7b5b7c5a3d02bc4af145 AS production
50
+ FROM node:22.13.1-alpine@sha256:e2b39f7b64281324929257d0f8004fb6cb4bf0fdfb9aa8cedb235a766aec31da AS production
45
51
 
46
52
  WORKDIR /srv/app/
47
53
 
package/package.json CHANGED
@@ -12,18 +12,18 @@
12
12
  },
13
13
  "description": "Generates a DargStack stack project readme.",
14
14
  "devDependencies": {
15
- "@commitlint/cli": "19.6.1",
16
- "@commitlint/config-conventional": "19.6.0",
17
- "@types/diff": "7.0.0",
15
+ "@commitlint/cli": "19.7.1",
16
+ "@commitlint/config-conventional": "19.7.1",
17
+ "@types/diff": "7.0.1",
18
18
  "@types/json2md": "1.5.4",
19
19
  "@types/yargs": "17.0.33",
20
- "eslint": "9.18.0",
20
+ "eslint": "9.20.0",
21
21
  "eslint-config-prettier": "10.0.1",
22
- "eslint-plugin-prettier": "5.2.1",
22
+ "eslint-plugin-prettier": "5.2.3",
23
23
  "globals": "15.14.0",
24
24
  "husky": "9.1.7",
25
- "prettier": "3.4.2",
26
- "typescript-eslint": "8.19.1"
25
+ "prettier": "3.5.0",
26
+ "typescript-eslint": "8.24.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@9.15.3",
34
+ "packageManager": "pnpm@10.2.1",
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.53"
42
+ "version": "0.9.55"
43
43
  }