dargstack_rgen 0.8.7 → 0.8.8
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:
|
|
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.
|
|
12
|
+
uses: dargmuesli/github-actions/.github/workflows/docker.yml@0.31.0
|
|
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.
|
|
19
|
+
uses: dargmuesli/github-actions/.github/workflows/release-semantic.yml@0.31.0
|
|
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 * *
|
|
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.
|
|
10
|
+
uses: dargmuesli/github-actions/.github/workflows/release-schedule.yml@0.31.0
|
|
11
11
|
secrets:
|
|
12
12
|
GH_TOKEN: ${{ secrets.GH_TOKEN }}
|
|
13
13
|
with:
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [0.8.8](https://github.com/dargmuesli/dargstack_rgen/compare/0.8.7...0.8.8) (2023-03-07)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **release:** schedule release ([6266a6f](https://github.com/dargmuesli/dargstack_rgen/commit/6266a6fa13524c035c73cdeeefacea230870499d))
|
|
7
|
+
|
|
1
8
|
## [0.8.7](https://github.com/dargmuesli/dargstack_rgen/compare/0.8.6...0.8.7) (2023-02-27)
|
|
2
9
|
|
|
3
10
|
|
package/Dockerfile
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
FROM node:19.7.0-alpine@sha256:
|
|
1
|
+
FROM node:19.7.0-alpine@sha256:155e324802ebfdd3f508340dcb0cd4a7510f8594802a2e53150f171ae8aa2462 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:
|
|
10
|
+
FROM node:19.7.0-alpine@sha256:155e324802ebfdd3f508340dcb0cd4a7510f8594802a2e53150f171ae8aa2462 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:
|
|
24
|
+
FROM node:19.7.0-alpine@sha256:155e324802ebfdd3f508340dcb0cd4a7510f8594802a2e53150f171ae8aa2462 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:
|
|
36
|
+
FROM node:19.7.0-alpine@sha256:155e324802ebfdd3f508340dcb0cd4a7510f8594802a2e53150f171ae8aa2462 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:
|
|
46
|
+
FROM node:19.7.0-alpine@sha256:155e324802ebfdd3f508340dcb0cd4a7510f8594802a2e53150f171ae8aa2462 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:
|
|
54
|
+
FROM node:19.7.0-alpine@sha256:155e324802ebfdd3f508340dcb0cd4a7510f8594802a2e53150f171ae8aa2462 AS production
|
|
55
55
|
|
|
56
56
|
WORKDIR /srv/app/
|
|
57
57
|
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
[](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.
|
|
4
|
-
"scheduleVersion": "0.8.
|
|
3
|
+
"version": "0.8.8",
|
|
4
|
+
"scheduleVersion": "0.8.8",
|
|
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,7 +14,7 @@
|
|
|
14
14
|
"engines": {
|
|
15
15
|
"node": "19"
|
|
16
16
|
},
|
|
17
|
-
"packageManager": "pnpm@7.
|
|
17
|
+
"packageManager": "pnpm@7.29.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",
|