declapract-typescript-ehmpathy 0.45.6 → 0.46.2
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.
- package/dist/practices/cicd-common/best-practice/.github/workflows/release.yml +1 -1
- package/dist/practices/cicd-service/best-practice/package.json +3 -3
- package/dist/practices/husky/best-practice/package.json +1 -2
- package/dist/practices/node/best-practice/package.json +1 -0
- package/dist/practices/provision-github/best-practice/package.json +2 -2
- package/dist/practices/provision-github/best-practice/provision/github.repo/resources.ts +0 -1
- package/dist/practices/rhachet/best-practice/package.json +9 -0
- package/dist/practices/rhachet/best-practice/package.json.declapract.ts +3 -0
- package/dist/useCases.yml +1 -0
- package/package.json +4 -5
|
@@ -50,7 +50,7 @@ jobs:
|
|
|
50
50
|
body="$(gh pr view "$PR" --json body -q .body)"
|
|
51
51
|
|
|
52
52
|
updated="$(printf "%s" "$body" \
|
|
53
|
-
| sed '1s/^:robot: I have created a release \*beep\* \*boop\*$/🐢 noice
|
|
53
|
+
| sed '1s/^:robot: I have created a release \*beep\* \*boop\*$/🐢 noice! ready to let these changes ride?/' \
|
|
54
54
|
| sed 's/^### Features$/### features/' \
|
|
55
55
|
| sed 's/^### Bug Fixes$/### fixes/' \
|
|
56
56
|
)"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"devDependencies": {
|
|
3
|
-
"declastruct": "@declapract{check.minVersion('1.7.
|
|
4
|
-
"declastruct-aws": "@declapract{check.minVersion('1.3
|
|
5
|
-
"declastruct-unix-network": "@declapract{check.minVersion('1.0.
|
|
3
|
+
"declastruct": "@declapract{check.minVersion('1.7.3')}",
|
|
4
|
+
"declastruct-aws": "@declapract{check.minVersion('1.4.3')}",
|
|
5
|
+
"declastruct-unix-network": "@declapract{check.minVersion('1.0.5')}"
|
|
6
6
|
}
|
|
7
7
|
}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"scripts": {
|
|
3
|
-
"prepare:husky": "npx husky install && chmod ug+x .husky/*"
|
|
4
|
-
"prepare": "[ -e .git ] && npm run prepare:husky || exit 0"
|
|
3
|
+
"prepare:husky": "npx husky install && chmod ug+x .husky/*"
|
|
5
4
|
},
|
|
6
5
|
"devDependencies": {
|
|
7
6
|
"husky": "@declapract{check.minVersion('8.0.3')}"
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
"bugs": "https://github.com/@declapract{variable.organizationName}/@declapract{variable.projectName}/issues",
|
|
8
8
|
"scripts": {
|
|
9
9
|
"fix": "npm run fix:format && npm run fix:lint",
|
|
10
|
+
"prepare": "if [ -e .git ] && [ -z $CI ]; then npm run prepare:husky && npm run prepare:rhachet; fi",
|
|
10
11
|
"prepush": "npm run test && npm run build",
|
|
11
12
|
"preversion": "npm run prepush",
|
|
12
13
|
"postversion": "git push origin HEAD --tags --no-verify"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"devDependencies": {
|
|
3
|
-
"declastruct": "@declapract{check.minVersion('1.7.
|
|
4
|
-
"declastruct-github": "@declapract{check.minVersion('1.0
|
|
3
|
+
"declastruct": "@declapract{check.minVersion('1.7.3')}",
|
|
4
|
+
"declastruct-github": "@declapract{check.minVersion('1.3.0')}"
|
|
5
5
|
}
|
|
6
6
|
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"devDependencies": {
|
|
3
|
+
"rhachet": "@declapract{check.minVersion('1.13.1')}",
|
|
4
|
+
"rhachet-roles-ehmpathy": "@declapract{check.minVersion('1.13.11')}"
|
|
5
|
+
},
|
|
6
|
+
"scripts": {
|
|
7
|
+
"prepare:rhachet": "npx rhachet init --force && npx rhachet roles link --role mechanic && .agent/repo=ehmpathy/role=mechanic/skills/.skills/init.claude.sh"
|
|
8
|
+
}
|
|
9
|
+
}
|
package/dist/useCases.yml
CHANGED
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "declapract-typescript-ehmpathy",
|
|
3
3
|
"author": "ehmpathy",
|
|
4
4
|
"description": "declapract best practices declarations for typescript",
|
|
5
|
-
"version": "0.
|
|
5
|
+
"version": "0.46.2",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"main": "src/index.js",
|
|
8
8
|
"repository": "ehmpathy/declapract-typescript-ehmpathy",
|
|
@@ -43,7 +43,8 @@
|
|
|
43
43
|
"preversion": "npm run prepush",
|
|
44
44
|
"postversion": "git push origin HEAD --tags --no-verify",
|
|
45
45
|
"prepare:husky": "npx husky install && chmod ug+x .husky/*",
|
|
46
|
-
"prepare": "
|
|
46
|
+
"prepare:rhachet": "npx rhachet init --force && npx rhachet roles link --role mechanic && .agent/repo=ehmpathy/role=mechanic/skills/.skills/init.claude.sh",
|
|
47
|
+
"prepare": "if [ -e .git ] && [ -z $CI ]; then npm run prepare:husky && npm run prepare:rhachet; fi"
|
|
47
48
|
},
|
|
48
49
|
"dependencies": {
|
|
49
50
|
"domain-objects": "0.31.7",
|
|
@@ -51,8 +52,6 @@
|
|
|
51
52
|
"expect": "29.4.2",
|
|
52
53
|
"flat": "5.0.2",
|
|
53
54
|
"helpful-errors": "1.5.3",
|
|
54
|
-
"rhachet": "1.13.1",
|
|
55
|
-
"rhachet-roles-ehmpathy": "1.13.7",
|
|
56
55
|
"yaml": "2.8.2"
|
|
57
56
|
},
|
|
58
57
|
"peerDependencies": {
|
|
@@ -77,7 +76,7 @@
|
|
|
77
76
|
"husky": "8.0.3",
|
|
78
77
|
"jest": "30.2.0",
|
|
79
78
|
"rhachet": "1.13.1",
|
|
80
|
-
"rhachet-roles-ehmpathy": "1.13.
|
|
79
|
+
"rhachet-roles-ehmpathy": "1.13.12",
|
|
81
80
|
"tsc-alias": "1.8.10",
|
|
82
81
|
"tsx": "4.20.6",
|
|
83
82
|
"type-fns": "0.8.1",
|