dargstack_rgen 0.9.2 → 0.9.4

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,13 +9,13 @@ on:
9
9
  jobs:
10
10
  build:
11
11
  name: Build
12
- uses: dargmuesli/github-actions/.github/workflows/docker-ghcr.yml@0.35.7
12
+ uses: dargmuesli/github-actions/.github/workflows/docker-ghcr.yml@0.37.3
13
13
  permissions:
14
14
  packages: write
15
15
  release-semantic:
16
16
  needs: build
17
17
  name: Release (semantic)
18
- uses: dargmuesli/github-actions/.github/workflows/release-semantic.yml@0.35.7
18
+ uses: dargmuesli/github-actions/.github/workflows/release-semantic.yml@0.37.3
19
19
  secrets:
20
20
  GH_TOKEN: ${{ secrets.GH_TOKEN }}
21
21
  NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
@@ -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@0.35.7
11
+ uses: dargmuesli/github-actions/.github/workflows/release-schedule.yml@0.37.3
12
12
  secrets:
13
13
  GH_TOKEN: ${{ secrets.GH_TOKEN }}
14
14
  with:
package/.nvmrc CHANGED
@@ -1 +1 @@
1
- 19
1
+ 20
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## [0.9.4](https://github.com/dargstack/dargstack_rgen/compare/0.9.3...0.9.4) (2023-05-02)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * schedule release ([5445fce](https://github.com/dargstack/dargstack_rgen/commit/5445fce542fe08b8bbf0a5a0f069f5bf026e3fe2))
7
+
8
+ ## [0.9.3](https://github.com/dargstack/dargstack_rgen/compare/0.9.2...0.9.3) (2023-04-24)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **package:** correct prepare script ([36c08ee](https://github.com/dargstack/dargstack_rgen/commit/36c08ee2c2ffc691415214ee4bd20ad025fe6969))
14
+
1
15
  ## [0.9.2](https://github.com/dargstack/dargstack_rgen/compare/0.9.1...0.9.2) (2023-04-18)
2
16
 
3
17
 
package/Dockerfile CHANGED
@@ -1,4 +1,4 @@
1
- FROM node:19.9.0-alpine@sha256:53741c7511b1836b5eb7e788a7b399c058b0b549f205d2c6af831ec1a9a81c31 AS development
1
+ FROM node:20.0.0-alpine@sha256:cc4e8f3d78a276fa05eae1803b6f8cbb43145441f54c828ab14e0c19dd95c6fd AS development
2
2
 
3
3
  WORKDIR /srv/app/
4
4
 
@@ -7,13 +7,13 @@ VOLUME /srv/app
7
7
  ENTRYPOINT ["node", "./src/generator.cjs"]
8
8
 
9
9
 
10
- FROM node:19.9.0-alpine@sha256:53741c7511b1836b5eb7e788a7b399c058b0b549f205d2c6af831ec1a9a81c31 AS prepare
10
+ FROM node:20.0.0-alpine@sha256:cc4e8f3d78a276fa05eae1803b6f8cbb43145441f54c828ab14e0c19dd95c6fd AS prepare
11
11
 
12
12
  WORKDIR /srv/app/
13
13
 
14
14
  COPY ./pnpm-lock.yaml ./
15
15
 
16
- RUN npm install -g pnpm && \
16
+ RUN corepack enable && \
17
17
  pnpm fetch
18
18
 
19
19
  COPY ./ ./
@@ -21,7 +21,7 @@ COPY ./ ./
21
21
  RUN pnpm install --offline
22
22
 
23
23
 
24
- FROM node:19.9.0-alpine@sha256:53741c7511b1836b5eb7e788a7b399c058b0b549f205d2c6af831ec1a9a81c31 AS build
24
+ FROM node:20.0.0-alpine@sha256:cc4e8f3d78a276fa05eae1803b6f8cbb43145441f54c828ab14e0c19dd95c6fd AS build
25
25
 
26
26
  WORKDIR /srv/app/
27
27
 
@@ -29,21 +29,21 @@ COPY --from=prepare /srv/app/ ./
29
29
 
30
30
  ENV NODE_ENV=production
31
31
 
32
- RUN npm install -g pnpm && \
32
+ RUN corepack enable && \
33
33
  pnpm install --offline
34
34
 
35
35
 
36
- FROM node:19.9.0-alpine@sha256:53741c7511b1836b5eb7e788a7b399c058b0b549f205d2c6af831ec1a9a81c31 AS test
36
+ FROM node:20.0.0-alpine@sha256:cc4e8f3d78a276fa05eae1803b6f8cbb43145441f54c828ab14e0c19dd95c6fd AS test
37
37
 
38
38
  WORKDIR /srv/app/
39
39
 
40
40
  COPY --from=prepare /srv/app/ ./
41
41
 
42
- RUN npm install -g pnpm && \
42
+ RUN corepack enable && \
43
43
  pnpm run test
44
44
 
45
45
 
46
- FROM node:19.9.0-alpine@sha256:53741c7511b1836b5eb7e788a7b399c058b0b549f205d2c6af831ec1a9a81c31 AS collect
46
+ FROM node:20.0.0-alpine@sha256:cc4e8f3d78a276fa05eae1803b6f8cbb43145441f54c828ab14e0c19dd95c6fd 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.9.0-alpine@sha256:53741c7511b1836b5eb7e788a7b399c058b0b549f205d2c6af831ec1a9a81c31 AS production
54
+ FROM node:20.0.0-alpine@sha256:cc4e8f3d78a276fa05eae1803b6f8cbb43145441f54c828ab14e0c19dd95c6fd AS production
55
55
 
56
56
  WORKDIR /srv/app/
57
57
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dargstack_rgen",
3
- "version": "0.9.2",
3
+ "version": "0.9.4",
4
4
  "description": "Generates a DargStack stack project readme.",
5
5
  "main": "src/generator.cjs",
6
6
  "repository": "https://github.com/dargstack/dargstack_rgen.git",
@@ -11,30 +11,29 @@
11
11
  },
12
12
  "type": "module",
13
13
  "engines": {
14
- "node": "19"
14
+ "node": "20"
15
15
  },
16
- "packageManager": "pnpm@8.2.0",
16
+ "packageManager": "pnpm@8.3.1",
17
17
  "scripts": {
18
18
  "lint": "eslint --ext .js,.cjs .",
19
- "prepare": "if [ \"$NODE_ENV\" != \"production\" ]; then husky install && shx rm -rf .git/hooks && shx ln -s ../.husky .git/hooks; fi",
19
+ "prepare": "node -e \"try { require('husky').install() } catch (e) {if (e.code !== 'MODULE_NOT_FOUND') throw e}\"",
20
20
  "test": "node src/generator.cjs -p test/example_stack -v"
21
21
  },
22
22
  "dependencies": {
23
23
  "deepmerge": "4.3.1",
24
24
  "diff": "5.1.0",
25
25
  "json2md": "2.0.0",
26
- "yaml": "2.2.1",
27
- "yargs": "17.7.1"
26
+ "yaml": "2.2.2",
27
+ "yargs": "17.7.2"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@commitlint/cli": "17.6.1",
31
31
  "@commitlint/config-conventional": "17.6.1",
32
- "eslint": "8.38.0",
32
+ "eslint": "8.39.0",
33
33
  "eslint-config-prettier": "8.8.0",
34
34
  "eslint-plugin-node": "11.1.0",
35
35
  "eslint-plugin-prettier": "4.2.1",
36
36
  "husky": "8.0.3",
37
- "prettier": "2.8.7",
38
- "shx": "0.3.4"
37
+ "prettier": "2.8.8"
39
38
  }
40
39
  }