dargstack_rgen 0.9.27 → 0.9.28
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,11 +1,11 @@
|
|
|
1
|
-
|
|
1
|
+
import commitlintConfigConventional from '@commitlint/config-conventional'
|
|
2
2
|
|
|
3
3
|
const ruleMaxLineLength =
|
|
4
4
|
commitlintConfigConventional.rules['body-max-line-length']
|
|
5
5
|
|
|
6
6
|
ruleMaxLineLength[0] = process.env.CI === 'true' ? 1 : 2
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
export default {
|
|
9
9
|
extends: ['@commitlint/config-conventional'],
|
|
10
10
|
rules: {
|
|
11
11
|
'body-max-line-length': ruleMaxLineLength,
|
package/.github/workflows/ci.yml
CHANGED
|
@@ -9,13 +9,13 @@ on:
|
|
|
9
9
|
jobs:
|
|
10
10
|
build:
|
|
11
11
|
name: Build
|
|
12
|
-
uses: dargmuesli/github-actions/.github/workflows/docker.yml@1.7.
|
|
12
|
+
uses: dargmuesli/github-actions/.github/workflows/docker.yml@1.7.5
|
|
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@1.7.
|
|
18
|
+
uses: dargmuesli/github-actions/.github/workflows/release-semantic.yml@1.7.5
|
|
19
19
|
permissions:
|
|
20
20
|
contents: write
|
|
21
21
|
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@1.7.
|
|
11
|
+
uses: dargmuesli/github-actions/.github/workflows/release-schedule.yml@1.7.5
|
|
12
12
|
secrets:
|
|
13
13
|
PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
|
|
14
14
|
with:
|
package/.husky/commit-msg
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
pnpm commitlint --
|
|
1
|
+
pnpm commitlint --edit "$1"
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [0.9.28](https://github.com/dargstack/dargstack_rgen/compare/0.9.27...0.9.28) (2024-03-05)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* schedule release ([6fe58ee](https://github.com/dargstack/dargstack_rgen/commit/6fe58ee3c9fcf04b28f92fce31030b1b92f8052e))
|
|
7
|
+
|
|
1
8
|
## [0.9.27](https://github.com/dargstack/dargstack_rgen/compare/0.9.26...0.9.27) (2024-02-20)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dargstack_rgen",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.28",
|
|
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",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"engines": {
|
|
14
14
|
"node": "20"
|
|
15
15
|
},
|
|
16
|
-
"packageManager": "pnpm@8.15.
|
|
16
|
+
"packageManager": "pnpm@8.15.4",
|
|
17
17
|
"scripts": {
|
|
18
18
|
"lint": "eslint --ext .js,.cjs .",
|
|
19
19
|
"prepare": "husky",
|
|
@@ -23,13 +23,13 @@
|
|
|
23
23
|
"deepmerge": "4.3.1",
|
|
24
24
|
"diff": "5.2.0",
|
|
25
25
|
"json2md": "2.0.1",
|
|
26
|
-
"yaml": "2.
|
|
26
|
+
"yaml": "2.4.0",
|
|
27
27
|
"yargs": "17.7.2"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@commitlint/cli": "
|
|
31
|
-
"@commitlint/config-conventional": "
|
|
32
|
-
"eslint": "8.
|
|
30
|
+
"@commitlint/cli": "19.0.3",
|
|
31
|
+
"@commitlint/config-conventional": "19.0.3",
|
|
32
|
+
"eslint": "8.57.0",
|
|
33
33
|
"eslint-config-prettier": "9.1.0",
|
|
34
34
|
"eslint-plugin-node": "11.1.0",
|
|
35
35
|
"eslint-plugin-prettier": "5.1.3",
|