dargstack_rgen 0.9.63 → 0.9.64

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/Dockerfile +20 -16
  3. package/package.json +7 -6
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [0.9.64](https://github.com/dargstack/dargstack_rgen/compare/0.9.63...0.9.64) (2025-06-03)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * schedule release ([6860141](https://github.com/dargstack/dargstack_rgen/commit/686014163650299bd6326911625d161c5e3b67d7))
7
+
1
8
  ## [0.9.63](https://github.com/dargstack/dargstack_rgen/compare/0.9.62...0.9.63) (2025-05-27)
2
9
 
3
10
 
package/Dockerfile CHANGED
@@ -1,20 +1,24 @@
1
- FROM node:22.16.0-alpine@sha256:9f3ae04faa4d2188825803bf890792f33cc39033c9241fc6bb201149470436ca AS development
1
+ FROM node:22.16.0-alpine AS base-image
2
+
3
+ ENV CI=true
2
4
 
3
5
  WORKDIR /srv/app/
4
6
 
7
+ RUN corepack enable
8
+
9
+
10
+ FROM base-image AS development
11
+
5
12
  VOLUME /srv/app
6
13
 
7
14
  ENTRYPOINT ["node", "./src/generator.js"]
8
15
 
9
16
 
10
- FROM node:22.16.0-alpine@sha256:9f3ae04faa4d2188825803bf890792f33cc39033c9241fc6bb201149470436ca AS prepare
11
-
12
- WORKDIR /srv/app/
17
+ FROM base-image AS prepare
13
18
 
14
19
  COPY ./pnpm-lock.yaml package.json ./
15
20
 
16
- RUN corepack enable \
17
- && pnpm fetch
21
+ RUN pnpm fetch
18
22
 
19
23
  COPY ./ ./
20
24
 
@@ -25,26 +29,26 @@ FROM prepare AS build
25
29
 
26
30
  ENV NODE_ENV=production
27
31
 
28
- RUN corepack enable \
29
- && pnpm install --offline --ignore-scripts --prod
32
+ RUN pnpm install --offline --ignore-scripts --prod
33
+
34
+
35
+ FROM prepare AS lint
36
+
37
+ RUN pnpm run lint
30
38
 
31
39
 
32
40
  FROM prepare AS test
33
41
 
34
- RUN corepack enable \
35
- && pnpm run test
42
+ RUN pnpm run test
36
43
 
37
44
 
38
45
  FROM prepare AS collect
39
46
 
40
47
  COPY --from=build /srv/app/ /srv/app/
41
- COPY --from=test /srv/app/package.json /tmp/package.json
48
+ COPY --from=lint /srv/app/package.json /dev/null
49
+ COPY --from=test /srv/app/package.json /dev/null
42
50
 
43
51
 
44
- FROM node:22.16.0-alpine@sha256:9f3ae04faa4d2188825803bf890792f33cc39033c9241fc6bb201149470436ca AS production
45
-
46
- WORKDIR /srv/app/
47
-
48
- COPY --from=collect /srv/app/ ./
52
+ FROM collect AS production
49
53
 
50
54
  ENTRYPOINT ["node", "./src/generator.js"]
package/package.json CHANGED
@@ -8,21 +8,22 @@
8
8
  "diff": "8.0.2",
9
9
  "json2md": "2.0.3",
10
10
  "yaml": "2.8.0",
11
- "yargs": "17.7.2"
11
+ "yargs": "18.0.0"
12
12
  },
13
13
  "description": "Generates a DargStack stack project readme.",
14
14
  "devDependencies": {
15
15
  "@commitlint/cli": "19.8.1",
16
16
  "@commitlint/config-conventional": "19.8.1",
17
+ "@eslint/js": "9.28.0",
17
18
  "@types/json2md": "1.5.4",
18
19
  "@types/yargs": "17.0.33",
19
- "eslint": "9.27.0",
20
+ "eslint": "9.28.0",
20
21
  "eslint-config-prettier": "10.1.5",
21
- "eslint-plugin-prettier": "5.4.0",
22
+ "eslint-plugin-prettier": "5.4.1",
22
23
  "globals": "16.2.0",
23
24
  "husky": "9.1.7",
24
25
  "prettier": "3.5.3",
25
- "typescript-eslint": "8.32.1"
26
+ "typescript-eslint": "8.33.1"
26
27
  },
27
28
  "engines": {
28
29
  "node": "22"
@@ -30,7 +31,7 @@
30
31
  "license": "GPL-3.0-only",
31
32
  "main": "src/generator.js",
32
33
  "name": "dargstack_rgen",
33
- "packageManager": "pnpm@10.11.0",
34
+ "packageManager": "pnpm@10.11.1",
34
35
  "repository": "https://github.com/dargstack/dargstack_rgen.git",
35
36
  "scripts": {
36
37
  "lint": "eslint --cache",
@@ -38,5 +39,5 @@
38
39
  "test": "node src/generator.js -p test/example_stack -v"
39
40
  },
40
41
  "type": "module",
41
- "version": "0.9.63"
42
+ "version": "0.9.64"
42
43
  }